Skip to content

Commit

Permalink
Fix travis error
Browse files Browse the repository at this point in the history
  • Loading branch information
laughingman7743 committed Jun 28, 2018
1 parent 2bce425 commit 93dcc9c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 4 additions & 5 deletions .travis.yml
Expand Up @@ -13,12 +13,11 @@ matrix:
- python: 3.6
env: TOXENV=py36
install:
- pip install pipenv codecov
- pipenv install --dev
- pip install tox codecov awscli
before_script:
- pipenv run ./scripts/test_data/upload_test_data.sh
- ./scripts/test_data/upload_test_data.sh
script:
- pipenv run tox
- tox
after_success:
# - pipenv run ./scripts/test_data/delete_test_data.sh
# - ./scripts/test_data/delete_test_data.sh
- codecov
9 changes: 6 additions & 3 deletions tox.ini
Expand Up @@ -2,9 +2,12 @@
envlist = py27,py34,py35,py36

[testenv]
deps = pipenv
deps =
SQLAlchemy>=1.0.0
pytest>=3.5
pytest-cov
pytest-flake8>=1.0.1
commands =
pipenv install --dev
pipenv run pytest --cov pyathena --cov-report html --cov-report term --flake8
pytest --cov pyathena --cov-report html --cov-report term --flake8
passenv =
AWS_*

0 comments on commit 93dcc9c

Please sign in to comment.