Skip to content

Commit

Permalink
Try and install packaged version of agent with pip
Browse files Browse the repository at this point in the history
Expect agent tests to fail Issue #178
  • Loading branch information
damies13 committed Feb 25, 2024
1 parent 13fa653 commit 1c8d23d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/Package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,7 @@ jobs:
# https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts#passing-data-between-jobs-in-a-workflow
with:
name: dist
path: |
dist
path: dist


#
21 changes: 20 additions & 1 deletion .github/workflows/Regression_Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,26 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pip install -r Tests/Regression/Agent/pip_requirements.txt

- name: Download packages to dist
uses: actions/download-artifact@v4
with:
name: dist
path: dist
- name: Show Dist
run: |
ls -la dist
- name: Install Agent from dist
run: pip install -r Tests/Regression/Agent/pip_requirements.txt
- name: Install Manager from dist (for testing Issues)
run: pip install -r Tests/Regression/Agent/pip_requirements.txt

# 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


- name: Robot Framework
run: robot --include ${{ matrix.platform }} Tests/Regression/Agent
Manager:
Expand Down

0 comments on commit 1c8d23d

Please sign in to comment.