Skip to content

Commit

Permalink
Revert "Do a "developer install" during CI tests."
Browse files Browse the repository at this point in the history
  • Loading branch information
zuckerruebe committed Mar 21, 2024
1 parent 36b6f64 commit 5b8d9bd
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,7 @@ jobs:
PYTRNSYS_DEPENDENCY_CHANGED: ${{github.event_name == 'repository_dispatch' && github.event.client_payload.type == 'run-tests-and-build-executable'}}
steps:
- uses: actions/checkout@v3

- name: Remove old dev venv
run: |
if (Test-Path -LiteralPath dev-venv) {
Remove-Item -LiteralPath dev-venv -Recurse
}
- name: Create dev virtual environment
run: py -3.12 -m venv dev-venv

- name: Install dev dependencies
run: |
dev-venv\Scripts\python -m pip install wheel
dev-venv\Scripts\python -m pip install -r requirements/dev.txt
- name: Generate UI code from Qt Creator Studio .ui files (dev-venv)
run: dev-venv\Scripts\python dev-tools\generateGuiClassesFromQtCreatorStudioUiFiles.py

- name: Check that trnsysGUI can be imported
run: dev-venv\Scripts\python -c "import trnsysGUI"


- name: Remove old venv
run: |
if (Test-Path -LiteralPath venv) {
Expand Down

0 comments on commit 5b8d9bd

Please sign in to comment.