From 290e5efefc62eb394c5d505ec146dc100380af0d Mon Sep 17 00:00:00 2001 From: cclauss Date: Tue, 22 Jan 2019 10:30:32 +0100 Subject: [PATCH] Also try running the unittests with pytest --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 0de6f86..89d3ecc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,8 @@ before_script: - flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics script: - python3 -m unittest tests.all --buffer --verbose + - pip install pytest + - pytest notifications: on_success: change on_failure: change # `always` will be the setting once code changes slow down