We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c00fdb commit f42b668Copy full SHA for f42b668
.github/workflows/core-ci.yml
@@ -74,6 +74,10 @@ jobs:
74
fi
75
conda list -n test
76
77
+ - name: Setup tmate session
78
+ if: ${{ matrix.python-version == '3.9' }}
79
+ uses: mxschmitt/action-tmate@v3
80
+
81
- name: Test with pytest
82
env:
83
WITH_HADOOP: ${{ matrix.with-hadoop }}
ci/reload-env.sh
@@ -1,7 +1,7 @@
1
#!/bin/bash
2
3
export UNAME="$(uname | awk '{print tolower($0)}')"
4
-export PYTEST_CONFIG_WITHOUT_COV="--log-level=DEBUG --timeout=1500 -W ignore::PendingDeprecationWarning"
+export PYTEST_CONFIG_WITHOUT_COV="-v --log-level=DEBUG --timeout=1500 -W ignore::PendingDeprecationWarning"
5
export PYTEST_CONFIG="$PYTEST_CONFIG_WITHOUT_COV --cov-config=setup.cfg --cov-report= --cov=mars"
6
7
if [[ "$GITHUB_REF" =~ ^"refs/tags/" ]]; then
0 commit comments