File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -25,19 +25,19 @@ jobs:
25
25
run : |
26
26
find . -type f > before_test_files.txt
27
27
conda env create -f environment.yml
28
+ conda install pandas numpy matplotlib --quiet
28
29
pip install --upgrade pip
29
- pip install pycodestyle flake8 pydocstyle coverage
30
+ pip install pycodestyle flake8 pydocstyle coverage pytest codecov
30
31
flake8 --ignore E203,W503 --exclude=examples,tests --statistics --count --exit-zero jarvis
31
32
pycodestyle --ignore E203,W503 --exclude=examples,testfiles jarvis
32
33
pydocstyle --match-dir=core --match-dir=io --match-dir=io --match-dir=ai --match-dir=analysis --match-dir=db --match-dir=tasks --count jarvis
33
34
34
35
#python setup.py develop
35
36
#pip install --upgrade --upgrade-strategy eager -r dev-requirements.txt -e .
36
37
#conda install -c ambermd pytraj
37
- conda install pandas numpy matplotlib --quiet
38
-
39
38
#pip install numpy scipy matplotlib
40
39
#pip install -r dev-requirements.txt
40
+
41
41
pip install -e .
42
42
echo 'CONDA LIST'
43
43
conda list
48
48
#echo 'PYTEST-COV'
49
49
#pytest --cov-config=.coveragerc --cov=jarvis -n 2
50
50
51
-
52
51
coverage run -m pytest
53
52
coverage report -m -i
54
53
codecov
You can’t perform that action at this time.
0 commit comments