Enable services tests for hybrid and plexus on the CI (#120)

* Enable services tests for hybrid and plexus on the CI

* Workaround the broken Github CI's host config
This commit is contained in:
2021-11-20 12:15:07 +01:00
committed by GitHub
parent b895539bdd
commit 2684e7edb7
6 changed files with 19 additions and 7 deletions

View File

@ -516,6 +516,7 @@ jobs:
test-hybrid:
needs:
- build-hybrid
- build-anope
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -528,6 +529,11 @@ jobs:
with:
name: installed-hybrid
path: '~'
- name: Download build artefacts
uses: actions/download-artifact@v2
with:
name: installed-anope
path: '~'
- name: Unpack artefacts
run: cd ~; find -name 'artefacts-*.tar.gz' -exec tar -xzf '{}' \;
- name: Install Atheme
@ -537,7 +543,7 @@ jobs:
python -m pip install --upgrade pip
pip install pytest pytest-xdist -r requirements.txt
- name: Test with pytest
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
hybrid
- if: always()
name: Publish results