Skip to content

Commit 510c3b7

Browse files
committed
Remove old tests
1 parent 16ba2f4 commit 510c3b7

16 files changed

+130
-1411
lines changed

.github/workflows/python-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
- 'test/**.py'
1414

1515
jobs:
16-
build:
16+
lint:
1717
runs-on: ubuntu-latest
1818

1919
steps:

.github/workflows/python-pytest.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121
- 'pyproject.toml'
2222

2323
jobs:
24-
build:
24+
pytest:
2525
name: pytest ${{ matrix.python-version }}/${{ matrix.mediawiki-version }}
2626
runs-on: ubuntu-latest
2727

@@ -33,6 +33,10 @@ jobs:
3333
steps:
3434
- uses: actions/checkout@v3.5.3
3535

36+
- uses: KengoTODA/actions-setup-docker-compose@main
37+
with:
38+
version: '1.29.2'
39+
3640
- name: Set up Docker containers with v${{ matrix.mediawiki-version }}
3741
run: |
3842
docker-compose -f ./docker-compose.yml -f ./docker-compose.extra.yml up -d

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ python_requires = >=3.7, <3.13
4646
[options.extras_require]
4747
dev =
4848
pytest
49+
pytest-order
4950
pylint
5051
pylint-exit
5152
mypy

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
extras_require={
1616
"dev": [
1717
"pytest",
18+
"pytest-order",
1819
"pylint",
1920
"pylint-exit",
2021
"mypy",

test/test_all.py

Lines changed: 0 additions & 203 deletions
This file was deleted.

0 commit comments

Comments
 (0)