@@ -58,20 +58,20 @@ jobs:
58
58
miniforge-variant : Mambaforge
59
59
miniforge-version : latest
60
60
mamba-version : " *"
61
- activate-environment : pymc-test
61
+ activate-environment : pymc-experimental- test
62
62
channel-priority : strict
63
63
environment-file : conda-envs/environment-test.yml
64
64
python-version : ${{matrix.python-version}}
65
65
use-mamba : true
66
66
use-only-tar-bz2 : true # IMPORTANT: This needs to be set for caching to work properly!
67
- - name : Install- pymc
67
+ - name : Install pymc-experimental
68
68
run : |
69
- conda activate pymc-test
69
+ conda activate pymc-experimental- test
70
70
pip install -e .
71
71
python --version
72
72
- name : Run tests
73
73
run : |
74
- conda activate pymc-test
74
+ conda activate pymc-experimental- test
75
75
python -m pytest -vv --cov=pymc_experimental --cov-append --cov-report=xml --cov-report term --durations=50 $TEST_SUBSET
76
76
- name : Upload coverage to Codecov
77
77
uses : codecov/codecov-action@v2
@@ -123,22 +123,22 @@ jobs:
123
123
miniforge-variant : Mambaforge
124
124
miniforge-version : latest
125
125
mamba-version : " *"
126
- activate-environment : pymc-test
126
+ activate-environment : pymc-experimental- test
127
127
channel-priority : strict
128
128
environment-file : conda-envs/windows-environment-test.yml
129
129
python-version : ${{matrix.python-version}}
130
130
use-mamba : true
131
131
use-only-tar-bz2 : true # IMPORTANT: This needs to be set for caching to work properly!
132
- - name : Install- pymc
132
+ - name : Install pymc-experimental
133
133
run : |
134
- conda activate pymc-test
134
+ conda activate pymc-experimental- test
135
135
pip install -e .
136
136
python --version
137
137
- name : Run tests
138
138
# This job uses a cmd shell, therefore the environment variable syntax is different!
139
139
# The ">-" in the next line replaces newlines with spaces (see https://stackoverflow.com/a/66809682).
140
140
run : >-
141
- conda activate pymc-test &&
141
+ conda activate pymc-experimental- test &&
142
142
python -m pytest -vv --cov=pymc_experimental --cov-append --cov-report=xml --cov-report term --durations=50 %TEST_SUBSET%
143
143
- name : Upload coverage to Codecov
144
144
uses : codecov/codecov-action@v2
0 commit comments