Skip to content

Commit 0c5883f

Browse files
committed
Try again
1 parent 2ad9469 commit 0c5883f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/test_code.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,25 @@ jobs:
3636
run: python -m pip install -e . --no-deps --force-reinstall
3737

3838
- name: Install pixelmatch
39-
shell: bash -l {0}
4039
run: |
4140
pip install pixelmatch
4241
4342
- name: Code tests
44-
shell: bash -l {0}
4543
run: |
4644
coverage run -p -m pytest -vv --ignore=tests/selenium --ignore=tests/playwright --ignore=tests/snapshots
4745
pwd
4846
ls -la
4947
48+
- name: Debug step
49+
run: |
50+
echo '====='
51+
pwd
52+
ls .coverage*
53+
5054
- name: Upload coverage
5155
if: always()
5256
uses: actions/upload-artifact@v4
5357
with:
5458
name: coverage-test-code
5559
path: |
56-
/home/runner/work/folium/folium/.coverage*
60+
.coverage*

0 commit comments

Comments
 (0)