Skip to content

Commit

Permalink
WIP: Use self-hosted runner
Browse files Browse the repository at this point in the history
  • Loading branch information
SMoraisAnsys authored Jun 7, 2024
1 parent a752dd6 commit 391ebb0
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,25 @@ jobs:
# Only the tox environment specified in the tox.ini gh-actions is run
run: tox -e test -- --ignore=tests/e2e

tests-e2e:
name: End to end tests and coverage
runs-on: [ self-hosted, Windows, pyedb-core ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

- name: Install dependencies
run: |
python -m pip install --upgrade .[tests]
python -m pip install --upgrade tox-gh-actions
- name: Test with tox
# Only the tox environment specified in the tox.ini gh-actions is run
run: tox -e test -- tests/e2e

doc-build:
name: "Doc build"
runs-on: ubuntu-latest
Expand Down

0 comments on commit 391ebb0

Please sign in to comment.