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

View File

@ -591,6 +591,7 @@ jobs:
test-hybrid:
needs:
- build-hybrid
- build-anope
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -603,6 +604,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
@ -612,7 +618,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

View File

@ -218,7 +218,7 @@ ergo:
hybrid:
$(PYTEST) $(PYTEST_ARGS) \
--controller irctest.controllers.hybrid \
-m 'not services' \
--services-controller=irctest.controllers.anope_services \
-k "$(HYBRID_SELECTORS)"
inspircd:
@ -275,7 +275,7 @@ mammon:
plexus4:
$(PYTEST) $(PYTEST_ARGS) \
--controller irctest.controllers.plexus4 \
-m 'not services' \
--services-controller=irctest.controllers.anope_services \
-k "$(PLEXUS4_SELECTORS)"
ngircd:

View File

@ -40,7 +40,7 @@ class {{
}};
connect {{
name = "services.example.org";
host = "localhost"; # Used to validate incoming connection
host = "127.0.0.1"; # Used to validate incoming connection
port = 0; # We don't need servers to connect to services
send_password = "password";
accept_password = "password";

View File

@ -45,7 +45,7 @@ class {{
}};
connect {{
name = "services.example.org";
host = "localhost"; # Used to validate incoming connection
host = "127.0.0.1"; # Used to validate incoming connection
port = 0; # We don't need servers to connect to services
send_password = "password";
accept_password = "password";

View File

@ -314,7 +314,7 @@ tests:
software: [charybdis]
hybrid:
software: [hybrid]
software: [hybrid, anope]
solanum:
software: [solanum]