From e8ad068a4296d355218b9896878a7e33a58aa038 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 8 Aug 2020 16:43:06 +0200 Subject: [PATCH] Another try at getting 3.7 to run --- .travis.yml | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/.travis.yml b/.travis.yml index 704d96d4..84c57f36 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,18 +29,12 @@ stages: jobs: include: - stage: Initial - python: - - 3.8 - script: - - python -m pytest --cov=nw -m "project|core|gui" -v - after_success: - - codecov - after_failure: - - cat /sys/fs/cgroup/memory/memory.max_usage_in_bytes + python: 3.8 + script: python -m pytest --cov=nw -m "project|core|gui" -v + after_success: codecov + after_failure: cat /sys/fs/cgroup/memory/memory.max_usage_in_bytes - stage: Full - python: - - 3.6 - - 3.7 - script: - - python -m pytest --cov=nw -m "project|core|gui" -v + python: 3.6 + - python: 3.7 + script: python -m pytest -m "project|core|gui" -v