We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8539729 commit 3824d54Copy full SHA for 3824d54
.github/workflows/python-app.yml
@@ -16,8 +16,9 @@ jobs:
16
echo "print('OK')" > test/a.py
17
mkdir test1
18
echo "print('OK')" > test1/a.py
19
+ - name: Extend PYTHONPATH
20
+ run: echo "PYTHONPATH=$PYTHONPATH:$(pwd)" >> $GITHUB_ENV
21
- name: Run OK
22
run: python -m test1.a
23
- name: Run Fail
- run: |
- python -c "from test import a"
24
+ run: python -m test.a
0 commit comments