summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 2f8b3cefcd666cef5eb223d5241f582259885551 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: python
dist: xenial

python:
  - "3.6"
  - "3.7"
  - "3.8"
  - "3.9"
  - "pypy3"

install:
  - pip install pip -U
  - pip install -e .
  - pip install pycodestyle
  - pip install coveralls

before_script:
  - "bash format.sh"

script: coverage run --source=slugify test.py

after_success: coveralls