Skip to content
Snippets Groups Projects
config.yml 490 B
version: 2.1

orbs:
  python: circleci/python@0.2.1

jobs:
  build-and-test:
    executor: python/default
    steps:
      - checkout
      - python/load-cache
      - python/install-deps
      - python/save-cache
      - run:
          command: |
            sudo pip install satella snakehouse
          name: Install necessary modules
      - run:
          command: |
            sudo coverage run setup.py test
          name: Test

workflows:
  main:
    jobs:
      - build-and-test