We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7e6554 commit d55161dCopy full SHA for d55161d
.circleci/config.yml
@@ -1,24 +1,18 @@
1
version: 2.1
2
3
jobs:
4
- unit_test_py3:
5
- docker:
6
- - image: python:3
+ unit_test:
+ machine:
+ enabled: true
7
+ image: "ubuntu-1604:201903-01"
8
steps:
9
- checkout
10
- run:
- name: run tests
11
- command: |
12
- python test/check-skip-env/check_skip_env_test.py
13
- unit_test_py2:
14
15
- - image: python:2
16
- steps:
17
- - checkout
+ name: run tests py2
+ command: python test/check-skip-env/check_skip_env_test.py
18
19
20
21
+ name: run tests py3
+ command: python3 test/check-skip-env/check_skip_env_test.py
22
23
24
workflows:
0 commit comments