mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +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 install
|
||||
- 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)
|
||||
'on':
|
||||
schedule:
|
||||
|
@ -97,6 +97,10 @@ def generate_workflow(config: dict, software_id: str, version_flavor: VersionFla
|
||||
"workflow_dispatch": None,
|
||||
}
|
||||
|
||||
env = software_config.get("env", {}).get(version_flavor.value, "")
|
||||
if env:
|
||||
env += " "
|
||||
|
||||
workflow = {
|
||||
"name": f"irctest with {name} ({version_flavor.value})",
|
||||
"on": on,
|
||||
@ -135,7 +139,7 @@ def generate_workflow(config: dict, software_id: str, version_flavor: VersionFla
|
||||
*install_steps,
|
||||
{
|
||||
"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
|
||||
devel: master
|
||||
devel_release: insp3
|
||||
env:
|
||||
# Atheme does not support Insp4 yet, so it fails to connect
|
||||
devel: "PYTEST_ARGS=\"-m 'not services'\""
|
||||
path: inspircd
|
||||
prefix: ~/.local/inspircd
|
||||
build_script: |
|
||||
|
Reference in New Issue
Block a user