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.
2 parents f469559 + b3958be commit 5f39226Copy full SHA for 5f39226
.github/workflows/pythonpackage.yml
@@ -24,6 +24,8 @@ jobs:
24
poetry install
25
- name: Run tests
26
run: |
27
+ git config --global user.email "action@github.com"
28
+ git config --global user.name "GitHub Action"
29
./scripts/test
30
- name: Upload coverage to Codecov
31
if: runner.os == 'Linux'
scripts/test
@@ -1,3 +1,5 @@
1
+#!/bin/sh -e
2
+
3
export PREFIX="poetry run python -m "
4
if [ -d 'venv' ] ; then
5
export PREFIX="venv/bin/"
0 commit comments