Skip to content

Commit c367f2e

Browse files
authored
Update action_build.yml
1 parent 4ce18a0 commit c367f2e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/action_build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ jobs:
2525
run: |
2626
find . -type f > before_test_files.txt
2727
conda env create -f environment.yml
28+
conda install pandas numpy matplotlib --quiet
2829
pip install --upgrade pip
29-
pip install pycodestyle flake8 pydocstyle coverage
30+
pip install pycodestyle flake8 pydocstyle coverage pytest codecov
3031
flake8 --ignore E203,W503 --exclude=examples,tests --statistics --count --exit-zero jarvis
3132
pycodestyle --ignore E203,W503 --exclude=examples,testfiles jarvis
3233
pydocstyle --match-dir=core --match-dir=io --match-dir=io --match-dir=ai --match-dir=analysis --match-dir=db --match-dir=tasks --count jarvis
3334
3435
#python setup.py develop
3536
#pip install --upgrade --upgrade-strategy eager -r dev-requirements.txt -e .
3637
#conda install -c ambermd pytraj
37-
conda install pandas numpy matplotlib --quiet
38-
3938
#pip install numpy scipy matplotlib
4039
#pip install -r dev-requirements.txt
40+
4141
pip install -e .
4242
echo 'CONDA LIST'
4343
conda list
@@ -48,7 +48,6 @@ jobs:
4848
#echo 'PYTEST-COV'
4949
#pytest --cov-config=.coveragerc --cov=jarvis -n 2
5050
51-
5251
coverage run -m pytest
5352
coverage report -m -i
5453
codecov

0 commit comments

Comments
 (0)