mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 23:09:48 +00:00
Enable Anope tests on Insp4
This commit is contained in:
8
.github/workflows/test-devel.yml
vendored
8
.github/workflows/test-devel.yml
vendored
@ -260,8 +260,8 @@ jobs:
|
|||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PYTEST_ARGS="$PYTEST_ARGS
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/inspircd/bin:$PATH
|
||||||
-m 'not services'" PATH=~/.local/inspircd/bin:$PATH make inspircd
|
make inspircd
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
@ -298,8 +298,8 @@ jobs:
|
|||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pytest -r requirements.txt
|
pip install pytest -r requirements.txt
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PYTEST_ARGS="$PYTEST_ARGS
|
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH PATH=~/.local/inspircd/bin:$PATH make
|
||||||
-m 'not services'" PATH=~/.local/inspircd/bin:$PATH make inspircd-anope
|
inspircd-anope
|
||||||
- if: always()
|
- if: always()
|
||||||
name: Publish results
|
name: Publish results
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
|
@ -147,7 +147,7 @@ def get_test_job(*, config, test_config, test_id, version_flavor):
|
|||||||
else:
|
else:
|
||||||
software_config = config["software"][software_id]
|
software_config = config["software"][software_id]
|
||||||
|
|
||||||
env += software_config.get("env", {}).get(version_flavor.value, "") + " "
|
env += test_config.get("env", {}).get(version_flavor.value, "") + " "
|
||||||
if "prefix" in software_config:
|
if "prefix" in software_config:
|
||||||
env += f"PATH={software_config['prefix']}/bin:$PATH "
|
env += f"PATH={software_config['prefix']}/bin:$PATH "
|
||||||
|
|
||||||
|
@ -73,9 +73,6 @@ software:
|
|||||||
release: null
|
release: null
|
||||||
devel: master
|
devel: master
|
||||||
devel_release: insp3
|
devel_release: insp3
|
||||||
env:
|
|
||||||
# Atheme does not support Insp4 yet, so it fails to connect
|
|
||||||
devel: "PYTEST_ARGS=\"$PYTEST_ARGS -m 'not services'\""
|
|
||||||
path: inspircd
|
path: inspircd
|
||||||
prefix: ~/.local/inspircd
|
prefix: ~/.local/inspircd
|
||||||
cache: false # incremental compilation is frequently broken
|
cache: false # incremental compilation is frequently broken
|
||||||
@ -157,6 +154,9 @@ tests:
|
|||||||
|
|
||||||
inspircd-atheme:
|
inspircd-atheme:
|
||||||
software: [inspircd]
|
software: [inspircd]
|
||||||
|
env:
|
||||||
|
# Atheme does not support Insp4 yet, so it fails to connect
|
||||||
|
devel: "PYTEST_ARGS=\"$PYTEST_ARGS -m 'not services'\""
|
||||||
|
|
||||||
inspircd-anope:
|
inspircd-anope:
|
||||||
software: [inspircd, anope]
|
software: [inspircd, anope]
|
||||||
|
Reference in New Issue
Block a user