Skip to content

Commit

Permalink
for travis.... for now
Browse files Browse the repository at this point in the history
  • Loading branch information
fizyk committed Mar 20, 2021
1 parent e43e835 commit c69a9db
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .travis.yml
Expand Up @@ -32,15 +32,19 @@ install:
- pip install -r requirements-test.txt
- pip install coveralls wheel
script:
- py.test -n 0
- POSTGRES=10 py.test -n 0
- POSTGRES=11 py.test -n 0
- POSTGRES=12 py.test -n 0
- POSTGRES=13 py.test -n 0
after_success:
- coveralls
jobs:
allow_failures:
- python: nightly
include:
- stage: xdist
script: py.test -n 1
script:
- POSTGRES=13 py.test -n 1
- stage: linters
install:
- pip install -r requirements-lint.txt
Expand All @@ -59,7 +63,12 @@ jobs:
- virtualenv venv -p python3
- source venv/bin/activate
script:
- py.test -n 0
- POSTGRES=9.5 py.test -n 0
- POSTGRES=9.6 py.test -n 0
- POSTGRES=10 py.test -n 0
- POSTGRES=11 py.test -n 0
- POSTGRES=12 py.test -n 0
- POSTGRES=13 py.test -n 0
- stage: deploy
if: tag IS present
script: skip
Expand Down

0 comments on commit c69a9db

Please sign in to comment.