Skip to content

Commit

Permalink
added use_develop to tox, this basically runs a pip install -e .
Browse files Browse the repository at this point in the history
  • Loading branch information
fedebenelli committed Oct 28, 2021
1 parent fc7dde7 commit 3a1775a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tox]
envlist = py39, style, coverage, check-manifest
install_command=python -m pip install {opts} {packages}
#install_command=python -m pip install {opts} {packages}

# ENVS
# ----------

[testenv]
wheel_pep517 = True
usedevelop = True
deps =
-r {toxinidir}/requirements.txt
pytest
Expand All @@ -15,8 +15,8 @@ commands = pytest tests/ {posargs}
[testenv:style]
deps =
flake8
flake8-isort
flake8-black
flake8-import-order
fortran-linter
skip_install = True
commands =
Expand All @@ -32,6 +32,7 @@ skip_install = True
commands =
- coverage erase
pytest -v tests/ --cov pyforfluids/ --cov-fail-under 90 --cov-report term-missing
- coverage erase

[testenv:check-manifest]
skip_install = True
Expand Down

0 comments on commit 3a1775a

Please # to comment.