mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 22:39:50 +00:00
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:
8
.github/workflows/test-devel.yml
vendored
8
.github/workflows/test-devel.yml
vendored
@ -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
|
||||
|
8
.github/workflows/test-stable.yml
vendored
8
.github/workflows/test-stable.yml
vendored
@ -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
|
||||
|
4
Makefile
4
Makefile
@ -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:
|
||||
|
@ -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";
|
||||
|
@ -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";
|
||||
|
@ -314,7 +314,7 @@ tests:
|
||||
software: [charybdis]
|
||||
|
||||
hybrid:
|
||||
software: [hybrid]
|
||||
software: [hybrid, anope]
|
||||
|
||||
solanum:
|
||||
software: [solanum]
|
||||
|
Reference in New Issue
Block a user