Skip to content

Commit e02bf1f

Browse files
committed
update test_mypy
1 parent 76647fe commit e02bf1f

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

.github/workflows/test_mypy.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,22 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v3
1111

12-
- name: Setup Micromamba
13-
uses: mamba-org/provision-with-micromamba@v15
12+
- name: Setup Micromamba env
13+
uses:
1414
with:
15-
environment-file: false
15+
environment-name: TEST
16+
create-args: >-
17+
python=${{ matrix.python-version }}
18+
--file requirements.txt
19+
--file requirements-dev.txt
20+
# conda-forge is the default channel now and does not need to be specified
1621

1722
- name: Create env
1823
shell: bash -l {0}
1924
run: |
20-
micromamba create --name TEST python=${{ matrix.python-version }} --file requirements.txt --file requirements-dev.txt --channel conda-forge
21-
micromamba activate TEST
2225
python -m pip install -e . --no-deps --force-reinstall
2326
2427
- name: Selenium tests
2528
shell: bash -l {0}
2629
run: |
27-
micromamba activate TEST
2830
mypy folium

0 commit comments

Comments
 (0)