-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
42 lines (42 loc) · 1.31 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
language: python
cache: pip
python:
- 3.6
- 3.7
- 3.8
- 3.9
matrix:
fast_finish: true
services:
- postgresql
addons:
postgresql: '12'
apt:
packages:
- postgresql-12
- postgresql-client-12
- postgresql-server-dev-12
install:
- pip install -q tox-travis
before_script:
- psql -c "CREATE DATABASE dpt_test_project;" -U travis
script:
- tox
env:
global:
- PGPORT=5433
- PGUSER=travis
jobs:
- DJANGO=22
- DJANGO=31
- DJANGO=32
deploy:
provider: pypi
user: vintasoftware
password:
secure: roK/f00ntmwhn2NROdOO8ICfhumw1FwpJxzWChW5XijgD/73vsSyqgCTjWwNCDny2DQt+/ggV5eyF/AF0CqHQL21VgBB4V10JEHfH2dRhhN27JORkdSRTyI1lUqFwWNr91h6it3h3/Dg1ws9Ycdx4WC4RNMZDRRa08Ew+i0Wqu8tqJPG5mgnyzBwG4B4pYkd+gqjoNJQUo1A8mPsfDH1bnfqBR9mXoNPIcXBU8SPFEQwrA83TOOZk+CckIayJ57yf0CwBk+oFhAwCpSpT760/oP3w9tuxmxX/y3Ao/lExVTTneXTsKO+tVnluNSjguLkhmFitLVZFOZvLq9z4AZHgaE/AlJDDeOiPirrd2s+7YLSalYJsLLaElDs0U8qc77uBa3pvKUeDrYgp+eQ7atXDivRY1OOxjhLruHfk3HMlVXFzoETD5mCMs3qD3qKrNuUoc+J7E8zhpe71nGr7DWYRrtTSbzZgP4XASPdcg7rhGGU2mH99pp9VaueZKXbikS2ySQ5xFlaJuoF3ojl+spRSFaqvSaRZzhoQ9HGc4pD+JToBsDNohBtP1rs6E04M0NxhDK6KeldB9JK3SuEyJt+DaKArYP6tLxk0dl8BPrgqmj9Jdc0nNSlMvMvGnSGEzpuPlcjPuQ4VvjdFDQKbINaQ7p7r4IfLHLjG3iEo5uGoRo=
on:
distributions: sdist bdist_wheel
repo: vintasoftware/django-pg-tenants
tags: true
skip_existing: true