File size: 498 Bytes
861c889
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
version: 2
jobs:
    build:
        working_directory: ~/autoprompt
        docker:
            - image: circleci/python:3.7
        environment:
            OMP_NUM_THREADS: 1
        resource_class: medium
        parallelism: 1
        steps:
            - checkout
            - run: pip install --upgrade pip
            - run: pip install -r requirements.txt
            - run: python -m pytest --disable-warnings
            - store_test_results:
                path: test-results