Skip to content

Commit

Permalink
simplified python for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lausdahl committed Mar 14, 2024
1 parent 348cc25 commit 4c544d8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,28 +101,28 @@ jobs:
- name: Install Python Dependencies
run: |
cd external_tester
python -m pip install --upgrade pip
python3 -m pip install --upgrade pip
pip install -r requirements.txt
pip3 install -r requirements.txt
- name: CLI Test
timeout-minutes: 5
run: |
cd external_tester
python maestro_cli_test.py --includeSlowTests
python3 maestro_cli_test.py --includeSlowTests
- name: Web API Test
timeout-minutes: 2
run: |
cd external_tester
python webapi_test.py
python3 webapi_test.py
- name: Legacy CLI Test
timeout-minutes: 2
run: |
cd external_tester
python cli_legacy_test.py
python3 cli_legacy_test.py
#- name: Threaded Web API test
# timeout-minutes: 5
Expand Down
1 change: 1 addition & 0 deletions external_tester/webapi_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python3
import argparse
import json
import os
Expand Down

0 comments on commit 4c544d8

Please sign in to comment.