mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
Fix CI
This commit is contained in:
2
.github/workflows/test-devel.yml
vendored
2
.github/workflows/test-devel.yml
vendored
@ -401,7 +401,7 @@ jobs:
|
|||||||
- name: Install dashboard dependencies
|
- name: Install dashboard dependencies
|
||||||
run: |-
|
run: |-
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install defusedxml
|
pip install defusedxml docutils -r requirements.txt
|
||||||
- name: Generate dashboard
|
- name: Generate dashboard
|
||||||
run: |-
|
run: |-
|
||||||
shopt -s globstar
|
shopt -s globstar
|
||||||
|
2
.github/workflows/test-devel_release.yml
vendored
2
.github/workflows/test-devel_release.yml
vendored
@ -86,7 +86,7 @@ jobs:
|
|||||||
- name: Install dashboard dependencies
|
- name: Install dashboard dependencies
|
||||||
run: |-
|
run: |-
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install defusedxml
|
pip install defusedxml docutils -r requirements.txt
|
||||||
- name: Generate dashboard
|
- name: Generate dashboard
|
||||||
run: |-
|
run: |-
|
||||||
shopt -s globstar
|
shopt -s globstar
|
||||||
|
2
.github/workflows/test-stable.yml
vendored
2
.github/workflows/test-stable.yml
vendored
@ -444,7 +444,7 @@ jobs:
|
|||||||
- name: Install dashboard dependencies
|
- name: Install dashboard dependencies
|
||||||
run: |-
|
run: |-
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install defusedxml
|
pip install defusedxml docutils -r requirements.txt
|
||||||
- name: Generate dashboard
|
- name: Generate dashboard
|
||||||
run: |-
|
run: |-
|
||||||
shopt -s globstar
|
shopt -s globstar
|
||||||
|
@ -8,6 +8,7 @@ from irctest.numerics import ERR_CHANOPRIVSNEEDED
|
|||||||
RENAME_CAP = "draft/channel-rename"
|
RENAME_CAP = "draft/channel-rename"
|
||||||
|
|
||||||
|
|
||||||
|
@cases.mark_specifications("IRCv3")
|
||||||
class ChannelRenameTestCase(cases.BaseServerTestCase):
|
class ChannelRenameTestCase(cases.BaseServerTestCase):
|
||||||
"""Basic tests for channel-rename."""
|
"""Basic tests for channel-rename."""
|
||||||
|
|
||||||
|
@ -367,7 +367,7 @@ def generate_workflow(config: dict, version_flavor: VersionFlavor):
|
|||||||
"name": "Install dashboard dependencies",
|
"name": "Install dashboard dependencies",
|
||||||
"run": script(
|
"run": script(
|
||||||
"python -m pip install --upgrade pip",
|
"python -m pip install --upgrade pip",
|
||||||
"pip install defusedxml",
|
"pip install defusedxml docutils -r requirements.txt",
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user