Skip to content

Commit 79e6cc2

Browse files
committed
test(): Run tests just on 3.11
1 parent 9593784 commit 79e6cc2

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

.github/workflows/test-and-coverage.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,10 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ ubuntu-latest, windows-latest ]
19-
python-version: [ '3.10', '3.11' ]
19+
python-version: [ '3.11' ]
2020

2121
steps:
2222
- uses: actions/checkout@v3
23-
- name: Clean up disk space
24-
run: |
25-
rm -rf ${{ github.workspace }}/*
2623
- name: Set up Python ${{ matrix.python-version }}
2724
uses: actions/setup-python@v4
2825
with:
@@ -45,7 +42,7 @@ jobs:
4542
strategy:
4643
matrix:
4744
os: [ ubuntu-latest, windows-latest ]
48-
python-version: [ '3.10', '3.11' ]
45+
python-version: [ '3.11' ]
4946

5047
steps:
5148
- uses: actions/checkout@v3
@@ -65,7 +62,7 @@ jobs:
6562
strategy:
6663
matrix:
6764
os: [ ubuntu-latest, windows-latest ]
68-
python-version: [ '3.10', '3.11' ]
65+
python-version: [ '3.11' ]
6966

7067
steps:
7168
- uses: actions/checkout@v3

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
[tox]
22
minversion = 4.0.0
3-
env_list = py{311,310}-{linux,windows}, flake8, mypy-{linux,windows}
3+
env_list = py{311}-{linux,windows}, flake8, mypy-{linux,windows}
44
isolated_build = true
55

66
[gh-actions]
77
python =
8-
3.10: py310
98
3.11: py311
109

1110
[gh-actions:env]

0 commit comments

Comments
 (0)