Skip to content

Commit 22cd104

Browse files
committed
Python 3.12 and 3.13 tests only
1 parent f79f5b6 commit 22cd104

3 files changed

Lines changed: 57 additions & 1 deletion

File tree

.github/workflows/py311-testing-linux.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
name: Local Linux 3.11 tests only
33

44
on:
5-
test-311:
5+
test-py311:
6+
uses: test-linux-py311
7+
paths-ignore:
8+
- '**.md'
9+
- '**.rst'
10+
11+
test-all-python:
612
uses: test-linux-py311
713
paths-ignore:
814
- '**.md'
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Run Linux tests using template in nrao/gh-actions-templates-public
2+
name: Local Linux 3.12 tests only
3+
4+
on:
5+
test-py312:
6+
uses: test-linux-py312
7+
paths-ignore:
8+
- '**.md'
9+
- '**.rst'
10+
11+
test-all-python:
12+
uses: test-linux-py312
13+
paths-ignore:
14+
- '**.md'
15+
- '**.rst'
16+
17+
jobs:
18+
test-linux-py312:
19+
uses: ./.github/workflows/python-testing-linux-template-vsm-version.yml
20+
with:
21+
cov_project: "astrohack"
22+
test-path: "tests/unit/test_class_base_panel.py"
23+
python-versions: '["3.12"]'
24+
local_run: true
25+
secrets: inherit
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Run Linux tests using template in nrao/gh-actions-templates-public
2+
name: Local Linux 3.13 tests only
3+
4+
on:
5+
test-py313:
6+
uses: test-linux-py313
7+
paths-ignore:
8+
- '**.md'
9+
- '**.rst'
10+
11+
test-all-python:
12+
uses: test-linux-py313
13+
paths-ignore:
14+
- '**.md'
15+
- '**.rst'
16+
17+
jobs:
18+
test-linux-py313:
19+
uses: ./.github/workflows/python-testing-linux-template-vsm-version.yml
20+
with:
21+
cov_project: "astrohack"
22+
test-path: "tests/unit/test_class_base_panel.py"
23+
python-versions: '["3.13"]'
24+
local_run: true
25+
secrets: inherit

0 commit comments

Comments
 (0)