Skip to content

Commit 48939a1

Browse files
committed
ci: run tests on Python 3.9
Run tests and checks with the oldest supported version of Python too.
1 parent 8d67245 commit 48939a1

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.builds/debian-py39.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
image: debian/bullseye
2+
packages:
3+
- libicu-dev
4+
- python3-dev
5+
- python3-pip
6+
- tox
7+
sources:
8+
- https://github.com/pimutils/todoman
9+
environment:
10+
CODECOV_TOKEN: a4471483-7f55-411a-bf2f-f65a91013dc4
11+
CI: true
12+
tasks:
13+
- setup: |
14+
sudo pip install codecov
15+
- test: |
16+
cd todoman
17+
tox -e py
18+
codecov
19+
- test-pyicu: |
20+
cd todoman
21+
tox -e pyicu
22+
codecov
23+
- test-repl: |
24+
cd todoman
25+
tox -e repl
26+
codecov

0 commit comments

Comments
 (0)