Skip to content

Commit 2872c29

Browse files
committed
update env file in windows
1 parent 907884d commit 2872c29

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/windows.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
pytest:
1010
strategy:
1111
matrix:
12-
python-version: ["3.7"]
1312
os: [windows-latest]
1413
floatx: [float64]
1514
test-subset:
15+
- pymc3/tests/test_distributions_random.py
1616
- pymc3/tests/test_sampling.py
1717
runs-on: ${{ matrix.os }}
1818
env:
@@ -26,17 +26,17 @@ jobs:
2626
- name: Cache conda
2727
uses: actions/cache@v1
2828
env:
29-
# Increase this value to reset cache if environment-dev.yml has not changed
29+
# Increase this value to reset cache if conda-envs/environment-dev-py37.yml has not changed
3030
CACHE_NUMBER: 0
3131
with:
3232
path: ~/conda_pkgs_dir
3333
key: ${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{
34-
hashFiles('environment-dev.yml') }}
34+
hashFiles('conda-envs/environment-dev-py37.yml') }}
3535
- uses: conda-incubator/setup-miniconda@v2
3636
with:
3737
activate-environment: testenv
3838
channel-priority: strict
39-
environment-file: environment-dev.yml
39+
environment-file: conda-envs/environment-dev-py37.yml
4040
use-only-tar-bz2: true # IMPORTANT: This needs to be set for caching to work properly!
4141
- run: |
4242
conda activate testenv

0 commit comments

Comments
 (0)