We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ad9469 commit 0c5883fCopy full SHA for 0c5883f
.github/workflows/test_code.yml
@@ -36,21 +36,25 @@ jobs:
36
run: python -m pip install -e . --no-deps --force-reinstall
37
38
- name: Install pixelmatch
39
- shell: bash -l {0}
40
run: |
41
pip install pixelmatch
42
43
- name: Code tests
44
45
46
coverage run -p -m pytest -vv --ignore=tests/selenium --ignore=tests/playwright --ignore=tests/snapshots
47
pwd
48
ls -la
49
+ - name: Debug step
+ run: |
50
+ echo '====='
51
+ pwd
52
+ ls .coverage*
53
+
54
- name: Upload coverage
55
if: always()
56
uses: actions/upload-artifact@v4
57
with:
58
name: coverage-test-code
59
path: |
- /home/runner/work/folium/folium/.coverage*
60
+ .coverage*
0 commit comments