Skip to content

Commit

Permalink
Final
Browse files Browse the repository at this point in the history
  • Loading branch information
drew2a committed Dec 4, 2023
1 parent 77dea25 commit 28ac081
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/!PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:

application_tester:
needs: [ changes, gatekeeper, env ]
if: ${{ needs.changes.outputs.src == 'true' || needs.changes.outputs.scripts == 'true'}}
if: ${{ (needs.changes.outputs.src == 'true' || needs.changes.outputs.scripts == 'true') && !github.event.pull_request.draft}}
uses: ./.github/workflows/application_tester.yml
with:
python-version: ${{needs.env.outputs.python-version}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/application_tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Add Tribler to PYTHONPATH
uses: ./.github/actions/add-pythonpath
with:
path: './src'
path: ./src

- name: Add Application Tester to PYTHONPATH
uses: ./.github/actions/add-pythonpath
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/scripttest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ jobs:
custom_cache_key_element: ${{inputs.ref}}

- name: Add Tribler to PYTHONPATH
run: |
echo "PYTHONPATH=${PYTHONPATH}:./src" >> $GITHUB_ENV
uses: ./.github/actions/add-pythonpath
with:
path: ./src

- name: run_bandwidth_crawler.py
uses: ./.github/actions/timeout
Expand Down

0 comments on commit 28ac081

Please sign in to comment.