Skip to content

Commit

Permalink
chore(travis) add tests for python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
dbousque committed Apr 24, 2021
1 parent 73d0aaf commit 0b636dc
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ matrix:
- cd python && pip install -r dev-requirements.txt && ./local_build.sh && cd test && pip install -r requirements.txt
script:
- pytest -vv -s
- language: python
os: linux
python:
- "3.9"
install:
- cd python && pip install -r dev-requirements.txt && ./local_build.sh && cd test && pip install -r requirements.txt
script:
- pytest -vv -s

# Ruby
- language: ruby
Expand Down Expand Up @@ -188,5 +196,17 @@ matrix:
- "3.8"
install:
- cd python && pip install -r dev-requirements.txt && ./local_build.sh && cd test && pip install -r requirements.txt
script:
- "rm -Rf test_correctness.py && valgrind --log-fd=1 pytest -vv -s | grep 'definitely lost: 0 byte'"
- language: python
name: 'Memory leaks Python 3.9'
os: linux
before_install:
- sudo apt-get update
- sudo apt-get install -y valgrind
python:
- "3.9"
install:
- cd python && pip install -r dev-requirements.txt && ./local_build.sh && cd test && pip install -r requirements.txt
script:
- "rm -Rf test_correctness.py && valgrind --log-fd=1 pytest -vv -s | grep 'definitely lost: 0 byte'"

0 comments on commit 0b636dc

Please sign in to comment.