mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
Add support for The Lounge (#132)
This commit is contained in:
28
.github/workflows/test-devel.yml
vendored
28
.github/workflows/test-devel.yml
vendored
@ -400,6 +400,7 @@ jobs:
|
||||
- test-plexus4
|
||||
- test-solanum
|
||||
- test-sopel
|
||||
- test-thelounge
|
||||
- test-unrealircd
|
||||
- test-unrealircd-5
|
||||
- test-unrealircd-anope
|
||||
@ -994,6 +995,33 @@ jobs:
|
||||
with:
|
||||
name: pytest-results_sopel_devel
|
||||
path: pytest.xml
|
||||
test-thelounge:
|
||||
needs: []
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.7
|
||||
- name: Install dependencies
|
||||
run: yarn global add https://github.com/thelounge/thelounge.git
|
||||
- name: Install system dependencies
|
||||
run: sudo apt-get install atheme-services faketime
|
||||
- name: Install irctest dependencies
|
||||
run: |-
|
||||
python -m pip install --upgrade pip
|
||||
pip install pytest pytest-xdist -r requirements.txt
|
||||
- name: Test with pytest
|
||||
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=$HOME/.local/bin:$PATH make
|
||||
thelounge
|
||||
timeout-minutes: 30
|
||||
- if: always()
|
||||
name: Publish results
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: pytest-results_thelounge_devel
|
||||
path: pytest.xml
|
||||
test-unrealircd:
|
||||
needs:
|
||||
- build-unrealircd
|
||||
|
Reference in New Issue
Block a user