Skip to content

Commit 9ccdb99

Browse files
committed
debug only single test
1 parent 4e9fac2 commit 9ccdb99

File tree

1 file changed

+2
-50
lines changed

1 file changed

+2
-50
lines changed

Diff for: .github/workflows/tests.yml

+2-50
Original file line numberDiff line numberDiff line change
@@ -11,54 +11,6 @@ on:
1111

1212

1313
jobs:
14-
# --- tests running on Ubuntu 20.04 -----------------------------------------
15-
tests-py36:
16-
# "ubuntu-latest" does not have Python 3.6
17-
runs-on: ubuntu-20.04
18-
timeout-minutes: 10
19-
20-
steps:
21-
- uses: actions/checkout@v4
22-
- name: Set up Python 3.6
23-
uses: actions/setup-python@v5
24-
with:
25-
python-version: "3.6"
26-
27-
- name: Install dependencies
28-
run: |
29-
pip install --upgrade pip setuptools wheel
30-
pip install -e .[testing]
31-
32-
- name: Run test suite
33-
run: |
34-
pytest
35-
36-
37-
# --- testing non-ancient versions ------------------------------------------
38-
tests-py3:
39-
runs-on: ubuntu-latest
40-
timeout-minutes: 10
41-
42-
strategy:
43-
fail-fast: false
44-
matrix:
45-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12", "3.13", pypy3.9]
46-
47-
steps:
48-
- uses: actions/checkout@v4
49-
- name: Set up Python ${{ matrix.python-version }}
50-
uses: actions/setup-python@v5
51-
with:
52-
python-version: ${{ matrix.python-version }}
53-
54-
- name: Install dependencies
55-
run: |
56-
pip install --upgrade pip setuptools wheel
57-
pip install -e .[testing]
58-
59-
- name: Run test suite
60-
run: |
61-
pytest
6214

6315
# --- testing on Windows ------------------------------------------
6416
tests-windows:
@@ -68,7 +20,7 @@ jobs:
6820
strategy:
6921
fail-fast: false
7022
matrix:
71-
python-version: ["3.9", "3.10", "3.11", "3.12"]
23+
python-version: ["3.9"]
7224

7325
steps:
7426
- uses: actions/checkout@v4
@@ -84,4 +36,4 @@ jobs:
8436
8537
- name: Run test suite
8638
run: |
87-
pytest
39+
pytest tests/enqueue_message_test.py::test_can_store_message_on_disk_before_sending

0 commit comments

Comments
 (0)