Skip to content

Commit

Permalink
Removes the installation of the poli__rasp environment from tox dev
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgondu committed Nov 1, 2023
1 parent c982a38 commit 675646e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ Since we are testing multiple conda environments, we settled for using a combina
pip install tox

# To test linting (from the root of the project)
tox -e lint
tox -c tox.dev.ini -e lint

# To test in the base environment for poli
tox -e poli-base-py39
tox -c tox.dev.ini -e poli-base-py39
```

If you want to run tests in all environments, remove `-e poli-base-py39` and just run `tox`.
Expand Down
1 change: 0 additions & 1 deletion tox.dev.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ commands =
sh -c 'if conda info --envs | grep -q poli__protein; then echo "poli__protein already exists"; else conda env create -f ./src/poli/objective_repository/foldx_stability/environment.yml; fi'
sh -c "conda run -n poli__protein python -m pip uninstall -y poli"
sh -c "conda run -n poli__protein python -m pip install -e ."
sh -c 'if conda info --envs | grep -q poli__rasp; then echo "poli__rasp already exists"; else conda env create -f ./src/poli/objective_repository/rasp/environment.yml; fi'
pytest {tty:--color=yes} -v {posargs}
sh -c "rm -rf ~/.poli_objectives/*.sh"
sh -c "rm -rf ~/.poli_objectives/config.rc"
Expand Down

0 comments on commit 675646e

Please sign in to comment.