mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 23:09:48 +00:00
Skip services tests on Insp4.
Atheme doesn't support it yet.
This commit is contained in:
2
.github/workflows/inspircd_devel.yml
vendored
2
.github/workflows/inspircd_devel.yml
vendored
@ -36,7 +36,7 @@ jobs:
|
|||||||
make -j 4
|
make -j 4
|
||||||
make install
|
make install
|
||||||
- name: Test with pytest
|
- name: Test with pytest
|
||||||
run: PATH=~/.local/inspircd/bin:$PATH make inspircd
|
run: PATH=~/.local/inspircd/bin:$PATH PYTEST_ARGS="-m 'not services'" make inspircd
|
||||||
name: irctest with InspIRCd (devel)
|
name: irctest with InspIRCd (devel)
|
||||||
'on':
|
'on':
|
||||||
schedule:
|
schedule:
|
||||||
|
@ -97,6 +97,10 @@ def generate_workflow(config: dict, software_id: str, version_flavor: VersionFla
|
|||||||
"workflow_dispatch": None,
|
"workflow_dispatch": None,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
env = software_config.get("env", {}).get(version_flavor.value, "")
|
||||||
|
if env:
|
||||||
|
env += " "
|
||||||
|
|
||||||
workflow = {
|
workflow = {
|
||||||
"name": f"irctest with {name} ({version_flavor.value})",
|
"name": f"irctest with {name} ({version_flavor.value})",
|
||||||
"on": on,
|
"on": on,
|
||||||
@ -135,7 +139,7 @@ def generate_workflow(config: dict, software_id: str, version_flavor: VersionFla
|
|||||||
*install_steps,
|
*install_steps,
|
||||||
{
|
{
|
||||||
"name": "Test with pytest",
|
"name": "Test with pytest",
|
||||||
"run": f"PATH={prefix}/bin:$PATH make {software_id}",
|
"run": f"PATH={prefix}/bin:$PATH {env}make {software_id}",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
@ -70,6 +70,9 @@ 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=\"-m 'not services'\""
|
||||||
path: inspircd
|
path: inspircd
|
||||||
prefix: ~/.local/inspircd
|
prefix: ~/.local/inspircd
|
||||||
build_script: |
|
build_script: |
|
||||||
|
Reference in New Issue
Block a user