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
+4 -4
View File
@@ -6,7 +6,7 @@ jobs:
inputs:
versionSpec: '3.8'
- bash: |
python -m pip install -r requirements-dev.txt pytest-azurepipelines
python -m pip install -e ".[dev]" pytest-azurepipelines
python ./bin/run_tests.py
- job: macos_38
@@ -16,7 +16,7 @@ jobs:
inputs:
versionSpec: '3.8'
- bash: |
python -m pip install -r requirements-dev.txt pytest-azurepipelines
python -m pip install -e ".[dev]" pytest-azurepipelines
python ./bin/run_tests.py
- job: windows_36
@@ -29,7 +29,7 @@ jobs:
- script: choco install vcpython27 -f -y
displayName: Install Visual C++ for Python 2.7
- bash: |
python -m pip install -r requirements-dev.txt pytest-azurepipelines
python -m pip install -e ".[dev]" pytest-azurepipelines
python ./bin/run_tests.py
- job: windows_38
@@ -42,5 +42,5 @@ jobs:
- script: choco install vcpython27 -f -y
displayName: Install Visual C++ for Python 2.7
- bash: |
python -m pip install -r requirements-dev.txt pytest-azurepipelines
python -m pip install -e ".[dev]" pytest-azurepipelines
python ./bin/run_tests.py