๐Ÿ“ฆ Colin-b / tesxcel

๐Ÿ“„ .travis.yml ยท 15 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15language: python
python:
  - "3.6"
  - "3.7"
  - "3.8"
install:
  - pip install .[testing]
script:
  - pytest --cov=tesxcel --cov-fail-under=100
deploy:
  provider: pypi
  username: __token__
  edge: true
  distributions: "sdist bdist_wheel"
  skip_existing: true