@@ -93,12 +93,12 @@ jobs:
93
93
- name : Cache conda
94
94
uses : actions/cache@v1
95
95
env :
96
- # Increase this value to reset cache if conda-envs/environment-test-py39 .yml has not changed
96
+ # Increase this value to reset cache if conda-envs/environment-test-py37 .yml has not changed
97
97
CACHE_NUMBER : 0
98
98
with :
99
99
path : ~/conda_pkgs_dir
100
100
key : ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{
101
- hashFiles('conda-envs/windows-environment-test-py39 .yml') }}
101
+ hashFiles('conda-envs/windows-environment-test-py37 .yml') }}
102
102
- name : Cache multiple paths
103
103
uses : actions/cache@v2
104
104
env :
@@ -116,21 +116,21 @@ jobs:
116
116
miniforge-variant : Mambaforge
117
117
miniforge-version : latest
118
118
mamba-version : " *"
119
- activate-environment : pymc-test-py39
119
+ activate-environment : pymc-test-py37
120
120
channel-priority : strict
121
- environment-file : conda-envs/windows-environment-test-py39 .yml
121
+ environment-file : conda-envs/windows-environment-test-py37 .yml
122
122
use-mamba : true
123
123
use-only-tar-bz2 : true # IMPORTANT: This needs to be set for caching to work properly!
124
124
- name : Install-pymc
125
125
run : |
126
- conda activate pymc-test-py39
126
+ conda activate pymc-test-py37
127
127
pip install -e .
128
128
python --version
129
129
- name : Run tests
130
130
# This job uses a cmd shell, therefore the environment variable syntax is different!
131
131
# The ">-" in the next line replaces newlines with spaces (see https://stackoverflow.com/a/66809682).
132
132
run : >-
133
- conda activate pymc-test-py39 &&
133
+ conda activate pymc-test-py37 &&
134
134
python -m pytest -vv --cov=pymc_experimental --cov-append --cov-report=xml --cov-report term --durations=50 %TEST_SUBSET%
135
135
- name : Upload coverage to Codecov
136
136
uses : codecov/codecov-action@v2
0 commit comments