refactor: setup.cfg and dev requirements (#504)

* refactor: use setup.cfg instead

* refactor: use dev extra

* fix: restore dev requiremetns
This commit is contained in:
Henry Schreiner
2021-01-02 11:33:38 -05:00
committed by GitHub
parent 10c052b5ef
commit bc8716c188
12 changed files with 93 additions and 70 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ init:
$env:PYTEST_ADDOPTS='-k "unit_test or test_0_basic" --suppress-no-test-exit-code'
}
install: python -m pip install -r requirements-dev.txt pytest-custom-exit-code
install: python -m pip install -e ".[dev]" pytest-custom-exit-code
# the '-u' flag is required so the output is in the correct order.
# See https://github.com/joerick/cibuildwheel/pull/24 for more info.