Revision 61257c0a61fedac5ea332b473efb2cbcf75976cd authored by sharkykh on 01 May 2019, 22:08:45 UTC, committed by sharkykh on 01 May 2019, 22:10:19 UTC
1 parent 41253ba
Raw File
config.yml
version: 2
jobs:
    build:
        working_directory: ~/repo
        docker:
            - image: jeremylow/python-twitter
        steps:
            - checkout
            - run: sudo chown -R circleci:circleci ~/repo
            - run:
                name: set up pyenv
                command: pyenv local 2.7.15 3.7.1 pypy-5.7.1 pypy3.5-6.0.0
            - run:
                name: install deps
                command: pip install -r requirements.testing.txt
            - run:
                name: run tests
                command: |
                    export PATH=/home/circleci/.local/bin:$PATH
                    make tox
back to top