-
Notifications
You must be signed in to change notification settings - Fork 165
/
.travis.yml
50 lines (43 loc) · 1.63 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
43
44
45
46
47
48
49
50
language: generic
sudo: required
os:
- linux
dist: xenial # required for Python >= 3.7
language: python
python:
- "3.7"
branches:
only:
- master
# Build any release branches/tags
- /^release-.+$/
env:
global:
- SLACK_SIGNING_SECRET:shhdonttellanyone
jobs:
include:
- stage: Unit tests
install: pip install -r requirements-dev.txt
script: pytest
- stage: E2E tests
script:
- bash ./e2e/run.sh
- stage: Linting
install: pip install -r requirements-dev.txt
script: flake8
- stage: Deploy
before_deploy:
# The E2E tests install response from a docker container using the root user,
# which creates a django_incident_response.egg-info directory owned by root.
# This messes up the PyPI deployment
- sudo rm -rf *.egg-info
install: skip
script: skip
deploy:
provider: pypi
username: monzo-response
password:
secure: CzUj0FeZEUh5pbBOVelSEcgau6nJ5ra5OnwbHSIxht65uCQjXV0mxMBI6f+xmJh7tT+otY+8AV7A5zxox89vPshqjoktBifx+WVmD9BaXdDJzuO8ydsc1y28B9DMyAG3HUr5tgmxFsIRmSkG2cGh5uOI8jf+c+nVtZPuEMh1vgpZPIQxZmPU9Hw+cUXO/5gl7FuJwkQjoRqOjLhVdVWvvIQ4YAA1Za+i/PUpCmhVOsHdiRd+5/Ico/z0UzD6Ev5aJMOoT/nxO00TkR3h/scrV9wH05DdxOSknb4U7DwBRso7qDPLrx2pNPECYwyWgW4DiXMgJtMnU6RIn76+DPDTXBWik6WI4bSDzYZ5RKSyg/ULNPNYEpSv1+7npcKjVKcOVlyzmYlaLyvhr/NIvalitl+6W+5g4ncZ06N7zVClWZMNImdqUC6eAmypkbj4XgCATT7f/iinAz5x+vMayhJcKBCashE8t4wtjYMaP9eY6+YomuYLPxM8mBXOc3xN1KOWdoDq8EPL4M6tF3kFvOCimJGbvqKV5hSK6Z2GGCnnKyAcs+ukjWOsXZrdEebxYt03L4JE3vIamUeTEME00hP5QylpoM/+SWE4iH2SiR9X3VGIuzHGQri36hRO6EDD1oSCruZ7ps5S7WNkswbJNGK4AnWwaoMbqRdLJDopEX+UTWI=
skip_existing: true
on:
tags: true