From b025fa6af4b8cad31f46ff4fa723b674daccf924 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sat, 8 Aug 2020 12:59:25 -0700 Subject: [PATCH] Install toml module to make it possible to run version-changing script before install --- .travis.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 55be6d4a..5337be5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -110,26 +110,23 @@ jobs: # Python 3.9 Dev Tests - name: Python 3.9 on Linux - script: + before_install: + - pip install toml - python .build/allow_all_python_version.py - - poetry run pytest - - poetry run behave python: 3.9-dev - <<: *test_mac name: Python 3.9 on MacOS - script: + before_install: + - pip install toml - python .build/allow_all_python_version.py - - poetry run pytest - - poetry run behave python: 3.9-dev env: JRNL_PYTHON_VERSION: 3.9.0b5 - <<: *test_windows name: Python 3.9 on Windows - script: + before_install: + - pip install toml - python .build/allow_all_python_version.py - - poetry run pytest - - poetry run behave python: 3.9-dev env: <<: *env_windows