Skip to content

Instantly share code, notes, and snippets.

@meyer1994
Last active September 4, 2020 03:28
Show Gist options
  • Save meyer1994/353fa148db830ef275281763ef3adaa8 to your computer and use it in GitHub Desktop.
Save meyer1994/353fa148db830ef275281763ef3adaa8 to your computer and use it in GitHub Desktop.
Simple Travis CI yaml
os: linux
dist: bionic
language: python
python:
- '3.7'
- '3.8'
cache:
pip: true
install:
- pip install -r requirements.txt
script:
- python -m unittest discover -vb tests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment