.travis.yaml 211 Bytes
Newer Older
崔为之's avatar
崔为之 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
language: python

python: "3.11"

install:
  - pip install -r requirements.txt
  - pip install coveralls

script:
  - pytest -p no:warnings
  - coverage run -m pytest -p no:warnings

after_script:
  - coveralls