File: .travis.yml

package info (click to toggle)
python-ratelimitqueue 0.2.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 180 kB
  • sloc: python: 463; makefile: 15
file content (28 lines) | stat: -rw-r--r-- 532 bytes parent folder | download
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
---
language: python
python:
  - 3.4
  - 3.5
  - 3.6
install:
  - pip3 install -r requirements.txt
  - pip3 install -e .
script: py.test -l

matrix:
  include:
      # from https://github.com/farrokhi/dnsdiag/blob/master/.travis.yml
    - python: 3.7
      dist: xenial
      sudo: true
    - python: 3.6
      script:
        - pytest -l --cov=ratelimitqueue
        - coveralls
      deploy:
        provider: pypi
        user: johnpaton
        password: $PYPI_PASSWORD
        on:
          branch: master
          tags: true