Skip to content

Commit e3615ca

Browse files
committed
[tests.yml] test all python versions
1 parent 7eacb92 commit e3615ca

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.13"] # ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
19+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v4

comocma/test.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"""
2+
"""
13
if __name__ == "__main__":
24

35
import doctest
@@ -8,3 +10,5 @@
810
# putting the default '...' doesn't work for that.
911
#print('doctesting `comocma`')
1012
print(doctest.testmod(comocma.como))
13+
# import comocma.test
14+
print(doctest.testmod(comocma.test))

0 commit comments

Comments
 (0)