This commit is contained in:
Valentin Lorentz 2022-04-10 15:07:15 +02:00
parent 358b6c2213
commit e92aee012b
5 changed files with 5 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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."""

View File

@ -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",
), ),
}, },
{ {