Skip to content

Commit

Permalink
hopefully this works
Browse files Browse the repository at this point in the history
  • Loading branch information
damies13 committed Feb 25, 2024
1 parent 3ca7dd0 commit 650ae6f
Showing 1 changed file with 9 additions and 18 deletions.
27 changes: 9 additions & 18 deletions .github/workflows/Regression_Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,26 +40,17 @@ jobs:
- name: Install Agent from dist W
if: ${{ matrix.platform == 'windows-latest' }}
shell: cmd
run: for %%f in (dist/rfswarm_agent-*.whl) do pip install %%f
run: for %%f in (rfswarm_agent-*.whl) do pip install %%f
working-directory: ./dist
# run: |
# $files = GetChildItem –Filter rfswarm_agent-*.whl –Recurse
# echo $files
# for /r %f in (dist/rfswarm_agent-*.whl) do echo %f
# for /r %f in (dist/rfswarm_agent-*.whl) do pip install %f

- name: Install Manager from dist (for testing Issues) UM
shell: bash
# if: ${{ matrix.platform != 'windows-latest' }}
run: pip install dist/rfswarm_manager-*.whl
# - name: Install Manager from dist (for testing Issues) W
# if: ${{ matrix.platform == 'windows-latest' }}
# shell: cmd
# run: pip install dist/rfswarm_manager-*.whl

# Tests will probably fail as some dependancies for testing will be missing
# just DB library?
# - run: pip install -r Tests/Regression/Agent/pip_requirements.txt
if: ${{ matrix.platform != 'windows-latest' }}
run: pip install rfswarm_manager-*.whl
working-directory: ./dist
- name: Install Manager from dist (for testing Issues) W
if: ${{ matrix.platform == 'windows-latest' }}
shell: cmd
run: for %%f in (rfswarm_manager-*.whl) do pip install %%f
working-directory: ./dist
- run: pip install -r Tests/Regression/Agent/pip_requirements.txt


Expand Down

0 comments on commit 650ae6f

Please sign in to comment.