Skip to content

Commit

Permalink
removed pipenv
Browse files Browse the repository at this point in the history
  • Loading branch information
lausdahl committed Mar 14, 2024
1 parent 8b4540c commit ea655aa
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 100 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,6 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install Python Pipenv
run: |
python -m pip install --upgrade pip
python -m pip install pipenv

- name: Put MSYS2_MinGW64 on PATH for windows
if: ${{matrix.os == env.WINDOWS_VERSION }}
Expand Down Expand Up @@ -105,25 +101,28 @@ jobs:
- name: Install Python Dependencies
run: |
cd external_tester
pipenv install
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: CLI Test
timeout-minutes: 5
run: |
cd external_tester
pipenv run python maestro_cli_test.py --includeSlowTests
python maestro_cli_test.py --includeSlowTests
- name: Web API Test
timeout-minutes: 2
run: |
cd external_tester
pipenv run python webapi_test.py
python webapi_test.py
- name: Legacy CLI Test
timeout-minutes: 2
run: |
cd external_tester
pipenv run python cli_legacy_test.py
python cli_legacy_test.py
#- name: Threaded Web API test
# timeout-minutes: 5
Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,6 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}

- name: Install Python Pipenv
run: |
python -m pip install --upgrade pip
python -m pip install pipenv
- name: Put MSYS2_MinGW64 on PATH for windows
if: ${{matrix.os == env.WINDOWS_VERSION }}
# there is not yet an environment variable for this path from msys2/setup-msys2
Expand All @@ -161,25 +156,27 @@ jobs:
- name: Install Python Dependencies
run: |
cd external_tester
pipenv install
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: CLI Test
timeout-minutes: 5
run: |
cd external_tester
pipenv run python maestro_cli_test.py --includeSlowTests
python maestro_cli_test.py --includeSlowTests
- name: Web API Test
timeout-minutes: 2
run: |
cd external_tester
pipenv run python webapi_test.py
python webapi_test.py
- name: Legacy CLI Test
timeout-minutes: 2
run: |
cd external_tester
pipenv run python cli_legacy_test.py
python cli_legacy_test.py
final:
Expand Down
13 changes: 0 additions & 13 deletions external_tester/Pipfile

This file was deleted.

69 changes: 0 additions & 69 deletions external_tester/Pipfile.lock

This file was deleted.

2 changes: 1 addition & 1 deletion external_tester/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-i https://pypi.python.org/simple

certifi==2021.5.30
chardet==4.0.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'
idna==2.10; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
Expand Down

0 comments on commit ea655aa

Please sign in to comment.