Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ image: Ubuntu
environment:
matrix:
- TOXENV: py27
PYTHON_VERSION: '2.7'
- TOXENV: py36
PYTHON_VERSION: '3.6'
- TOXENV: py37
PYTHON_VERSION: '3.7'
- TOXENV: py38
PYTHON_VERSION: '3.8'

build: off

install:
- sh: "source ${HOME}/venv${PYTHON_VERSION}/bin/activate"
- sh: "python --version"
- make init

test_script:
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pyrsistent~=0.16.0; python_version<"3"
boto3~=1.15.16
boto3~=1.5
enum34~=1.1; python_version<"3.4"
jsonschema~=3.2
six~=1.15
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ envlist = py27, py36, py37, py38
# resource. Tox tries to simulate Py3 behavior in Py2.7 by setting PYTHONHASHSEED to random values on every run.
# This results in unit test failures. This happens only within Tox. To fix this, we are unsetting the seed value
# specifically for Py27 in Tox.
passenv = AWS*
passenv = AWS* CODECOV_TOKEN
setenv = PYTHONHASHSEED = 0
commands = make pr2.7
codecov
Expand All @@ -26,5 +26,5 @@ commands = make pr2.7
commands = make pr
codecov
deps = codecov>=1.4.0
passenv = AWS* TONXENV CI TRAVIS TRAVIS_*
whitelist_externals = make, black
passenv = AWS* TONXENV CI TRAVIS TRAVIS_* CODECOV_TOKEN
whitelist_externals = make, black, codecov