diff --git a/.nvim/coc-settings.json b/.nvim/coc-settings.json deleted file mode 100644 index 6241779..0000000 --- a/.nvim/coc-settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "python.pythonPath": ".python/dpspecs/bin/python" -} diff --git a/README.md b/README.md index a2421ed..6e79400 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build](https://img.shields.io/github/actions/workflow/status/frictionlessdata/dpspecs-py/general.yaml?branch=main)](https://github.com/frictionlessdata/dpspecs-py/actions) [![Coverage](https://img.shields.io/codecov/c/github/frictionlessdata/dpspecs-py/main)](https://codecov.io/gh/frictionlessdata/dpspecs-py) -[![Release](https://img.shields.io/pypi/v/frictionless.svg)](https://pypi.python.org/pypi/frictionless) +[![Release](https://img.shields.io/pypi/v/frictionless.svg)](https://pypi.python.org/pypi/dpspecs) [![Codebase](https://img.shields.io/badge/codebase-github-brightgreen)](https://github.com/frictionlessdata/dpspecs-py) Python implementation of the Data Package standard diff --git a/docs/index.md b/docs/index.md index a2421ed..6e79400 100644 --- a/docs/index.md +++ b/docs/index.md @@ -2,7 +2,7 @@ [![Build](https://img.shields.io/github/actions/workflow/status/frictionlessdata/dpspecs-py/general.yaml?branch=main)](https://github.com/frictionlessdata/dpspecs-py/actions) [![Coverage](https://img.shields.io/codecov/c/github/frictionlessdata/dpspecs-py/main)](https://codecov.io/gh/frictionlessdata/dpspecs-py) -[![Release](https://img.shields.io/pypi/v/frictionless.svg)](https://pypi.python.org/pypi/frictionless) +[![Release](https://img.shields.io/pypi/v/frictionless.svg)](https://pypi.python.org/pypi/dpspecs) [![Codebase](https://img.shields.io/badge/codebase-github-brightgreen)](https://github.com/frictionlessdata/dpspecs-py) Python implementation of the Data Package standard diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..bcfbed1 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,11 @@ +# Settings + + +def pytest_addoption(parser): + parser.addoption( + "--ci", + action="store_true", + dest="ci", + default=False, + help="enable integrational tests", + )