Skip to content

Commit

Permalink
simplify execution of python scripts in build jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
erichstuder committed Nov 16, 2024
1 parent 683190c commit d66d7f7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
fetch-depth: 0 # Fetch all history to determine the last file hashes during build

- name: build documentation
run: python3 run.py --build_all
run: ./run.py --build_all

- name: Setup Pages
uses: actions/configure-pages@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/textual_simulator_feature_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
submodules: true

- name: run feature tests
run: python3 run.py --Textual --simulator --features --test --report --pseudo_tty_off --verbose
run: ./run.py --Textual --simulator --features --test --report --pseudo_tty_off --verbose
# note: The report is only generated to test if it can be generated without errors.
2 changes: 1 addition & 1 deletion .github/workflows/textual_simulator_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ jobs:
submodules: true

- name: run unit tests
run: python3 run.py --Textual --simulator --unit_tests --test --report --pseudo_tty_off --verbose
run: ./run.py --Textual --simulator --unit_tests --test --report --pseudo_tty_off --verbose
# note: The report is only generated to test if it can be generated without errors.

0 comments on commit d66d7f7

Please sign in to comment.