File: .travis.yml

package info (click to toggle)
python-mercantile 1.2.1-8
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 304 kB
  • sloc: python: 1,504; makefile: 211; sh: 4
file content (23 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
language: python
dist: xenial
python:
  - "3.6"
  - "3.7"
  - "3.8"
  - "3.9"
install:
  - "pip install --require-hashes -r requirements.txt"
  - "pip install -e .[test]"
script:
  - "python -m pytest --cov mercantile --cov-report term-missing"
  - "python -m pydocstyle mercantile tests"
after_success:
  - coveralls
deploy:
  on:
    repo: mapbox/mercantile
    python: 3.7
    tags: true
  provider: pypi
  distributions: "sdist bdist_wheel"
  user: __token__