Skip to content

Instantly share code, notes, and snippets.

@jsalbert
Last active March 24, 2021 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsalbert/93b32c59b3b0f7651f8f305cbf057b34 to your computer and use it in GitHub Desktop.
Save jsalbert/93b32c59b3b0f7651f8f305cbf057b34 to your computer and use it in GitHub Desktop.
Simple Circle CI Config
version: 2
jobs:
test:
docker:
- image: python:3.7
steps:
- run:
name: Run tests
command: |
pip install virtualenv
virtualenv .venv
source .venv/bin/activate
pip install -r requirements.txt
pytest tests
no_output_timeout: 1h
workflows:
version: 2
test_package:
jobs:
- test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment