File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,14 +48,14 @@ jobs:
48
48
- name : If Python is 3.7 install dependencies in conda base environment
49
49
if : ${{ matrix.python-version == '3.7' }}
50
50
run : |
51
- source activate base
51
+ conda activate base
52
52
python -m pip install --upgrade pip
53
53
pip install pytest pytest-cov pytest-xdist
54
54
shell : bash
55
55
- name : If Python is 3.7 install package in conda base environment
56
56
if : ${{ matrix.python-version == '3.7' }}
57
57
run : |
58
- source activate base
58
+ conda activate base
59
59
pip install --upgrade pip
60
60
pip install --upgrade setuptools
61
61
pip install -e .
64
64
- name : If Python is 3.7 test with pytest and coverage Linux 8 threads in conda base environment
65
65
if : ${{ matrix.python-version == '3.7' }}
66
66
run : |
67
- source activate base
67
+ conda activate base
68
68
echo -e '[run]\nomit = *dihedrals.py,*contact_matrix.py' > .coveragerc
69
69
pytest -n 8 -vs --cov=./ --cov-report=xml --disable-warnings --cov-config=.coveragerc
70
70
shell : bash
You can’t perform that action at this time.
0 commit comments