diff --git a/.travis.yml b/.travis.yml index eca53872..d86e4436 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,7 +11,7 @@ branches: before_install: - pip install -U pip install: -- pip install -e '.[testing]' +- pip install -e '.[test]' script: - coverage run -m pytest --junitxml=results.xml - coverage xml diff --git a/README.md b/README.md index b1aea16a..4eeb4e23 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ _Developers_ ```commandline git clone https://github.com/molgenis/capice.git cd capice -pip install --editable '.[testing]' +pip install --editable '.[test]' ``` ### Windows diff --git a/setup.py b/setup.py index c7a8b000..0f0cbc39 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ 'xgboost==1.6.2' ], extras_require={ - 'testing': [ + 'test': [ 'pytest', 'coverage' ]