.travis.yml 222 B

123456789101112
  1. language: python # works on linux, not windows
  2. python:
  3. - "3.6"
  4. install:
  5. - pip3 install -r requirements-dev.txt
  6. - python3 setup.py build_ext --inplace
  7. - python3 setup.py install
  8. script:
  9. - pytest tests