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