Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

Commit

Permalink
Add py3.8 testing
Browse files Browse the repository at this point in the history
  • Loading branch information
a-maliarov committed Feb 14, 2022
1 parent 0103181 commit 402c579
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,27 @@ shared: &shared
name: Running tests
command: |
coverage run -m unittest tests/test_simpleplots.py
- run: |
if [ $UPLOAD_COV ]; then
codecov
fi
jobs:
py37:
<<: *shared
docker:
- image: circleci/python:3.7

py38:
<<: *shared
docker:
- image: circleci/python:3.8
environment:
UPLOAD_COV: "true"

workflows:
version: 2.1
main:
jobs:
- py37
- py38

0 comments on commit 402c579

Please sign in to comment.