Skip to content

Commit 07af0ee

Browse files
committed
Copy setup from recordlists
1 parent 7f951f8 commit 07af0ee

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
python -m pip install --upgrade pip poetry tox
7878
7979
- name: Test with tox
80-
run: tox
80+
run: tox -e tests
8181

8282
- name: Upload coverage report
8383
uses: codecov/codecov-action@v5
@@ -132,7 +132,7 @@ jobs:
132132
133133
- name: "Test with tox"
134134
# Only the tox environment specified in the tox.ini gh-actions is run
135-
run: tox -e tests313 -- -m mapdl_integration
135+
run: tox -e tests -- -m mapdl_integration
136136

137137
- name: "Collect MAPDL logs on failure"
138138
if: always()

tox.ini

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,18 @@
11
[tox]
22
description = Default tox environments list
33
envlist =
4-
style,tests,tests{310,311,312,313},doc
4+
style,tests,doc
55
skip_missing_interpreters = true
66
isolated_build = true
77

8-
[gh-actions]
9-
python =
10-
3.10: tests310
11-
3.11: tests311
12-
3.12: tests312
13-
3.13: tests313
14-
15-
[testenv:tests]
8+
[testenv]
169
description = Checks for project unit tests and coverage (if desired)
1710
basepython =
1811
tests310: python3.10
1912
tests311: python3.11
2013
tests312: python3.12
2114
tests313: python3.13
15+
{style,tests,doc}: python3
2216
skip_install = true
2317
allowlist_externals =
2418
poetry

0 commit comments

Comments
 (0)