summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 62ad8759ed180070765cd3b25b2c00881cf78ca9 (plain)
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
language: python
python:
- '2.7'
- '3.5'
- '3.6'
- '3.7'
- '3.8'
- '3.9'
- 3.10-dev
- nightly
- pypy3
install:
- travis_retry pip install coveralls
script:
- coverage run --source=jsonpointer tests.py
after_script:
- coveralls
sudo: false
addons:
  apt:
    packages:
    - pandoc
before_deploy:
- pip install -r requirements-dev.txt
deploy:
  provider: pypi
  user: skoegl
  password:
    secure: bKET/1sK+uWetPM3opPTt4qHHfZ6bMcjuLGe3Z/EUfNnGazcbDezy9CHJSqofuMXynF3xc8yluEojjfaqos3Ge/Y4o8pdFMY8ABp8KkxMnAJYGtYzbneSHgdgxPKsmdcUMVtIfioqkeNJTJClWUhRikWSlpKZ7TtkK4AmWtKNwc=
  on:
    tags: true
  distributions: sdist bdist_wheel