@@ -32,12 +32,12 @@ jobs:
32
32
- name : Cache conda
33
33
uses : actions/cache@v1
34
34
env :
35
- # Increase this value to reset cache if environment-test-py37 .yml has not changed
35
+ # Increase this value to reset cache if environment-test-py38 .yml has not changed
36
36
CACHE_NUMBER : 0
37
37
with :
38
38
path : ~/conda_pkgs_dir
39
39
key : ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{
40
- hashFiles('conda-envs/environment-test-py37 .yml') }}
40
+ hashFiles('conda-envs/environment-test-py38 .yml') }}
41
41
- name : Cache multiple paths
42
42
uses : actions/cache@v2
43
43
env :
@@ -55,19 +55,19 @@ jobs:
55
55
miniforge-variant : Mambaforge
56
56
miniforge-version : latest
57
57
mamba-version : " *"
58
- activate-environment : pymc-test-py37
58
+ activate-environment : pymc-test-py38
59
59
channel-priority : strict
60
- environment-file : conda-envs/environment-test-py37 .yml
60
+ environment-file : conda-envs/environment-test-py38 .yml
61
61
use-mamba : true
62
62
use-only-tar-bz2 : true # IMPORTANT: This needs to be set for caching to work properly!
63
63
- name : Install-pymc
64
64
run : |
65
- conda activate pymc-test-py37
65
+ conda activate pymc-test-py38
66
66
pip install -e .
67
67
python --version
68
68
- name : Run tests
69
69
run : |
70
- conda activate pymc-test-py37
70
+ conda activate pymc-test-py38
71
71
python -m pytest -vv --cov=pymc_experimental --cov-append --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET
72
72
- name : Upload coverage to Codecov
73
73
uses : codecov/codecov-action@v2
@@ -137,4 +137,4 @@ jobs:
137
137
with :
138
138
env_vars : TEST_SUBSET
139
139
name : ${{ matrix.os }} ${{ matrix.floatx }}
140
- fail_ci_if_error : false
140
+ fail_ci_if_error : false
0 commit comments