Skip to content

Commit

Permalink
back out tox changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bug-or-feature committed Mar 11, 2021
1 parent 2580eec commit cdb19d9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/slow-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,13 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install tox pytest
pip install pytest
pip install -r requirements.txt
- name: Run tox
- name: Test with pytest
run: |
tox -e py
pytest --runslow --disable-warnings
#- name: Coverage report
# run: |
# coverage html
15 changes: 12 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
[tox]
envlist = py{36, 37, 38}
envlist = py{35,36}

[testenv]
commands = pytest --runslow --disable-warnings
commands =
coverage run -m nose
coverage report
deps =
nose
coverage
pandas>=0.19.0
numpy>= 1.10.1
matplotlib>=1.4.3
PyYAML>=3.11
scipy>=0.17

deps = -rrequirements.txt

0 comments on commit cdb19d9

Please sign in to comment.