Skip to content
This repository has been archived by the owner on May 16, 2020. It is now read-only.

Commit

Permalink
Drop PyPy support (bcrypt via coaster is incompatible)
Browse files Browse the repository at this point in the history
  • Loading branch information
jace committed Jul 14, 2017
1 parent 711d3cd commit 16acb61
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ cache: pip
python:
- "2.7"
- "3.6"
- "pypy"
addons:
postgresql: "9.4"
services:
Expand All @@ -13,14 +12,13 @@ services:
install:
- pip install setuptools --upgrade
- python setup.py develop
- pip install nose coverage coveralls
- 'if [[ "$TRAVIS_PYTHON_VERSION" != "pypy" ]]; then pip install psycopg2; fi'
- pip install nose coverage coveralls psycopg2
- 'if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then pip install PySqlite; fi'
# command to run tests
before_script:
- psql -c 'create database myapp_test;' -U postgres
script:
- 'if [[ "$TRAVIS_PYTHON_VERSION" != "pypy" ]]; then ./runtests.sh; fi'
- 'if [[ "$TRAVIS_PYTHON_VERSION" == "pypy" ]]; then SQLALCHEMY_DATABASE_URI="sqlite://" ./runtests.sh ; fi'
- ./runtests.sh
after_success:
- coveralls
notifications:
Expand Down

0 comments on commit 16acb61

Please sign in to comment.