Skip to content

Commit e06ea69

Browse files
committed
Merge branch 'testing/circle-ci-attempt-2' into develop
2 parents 27b2089 + 3c35f1f commit e06ea69

File tree

2 files changed

+39
-11
lines changed

2 files changed

+39
-11
lines changed

.circleci/config.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Python CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-python/ for more details
4+
#
5+
version: 2
6+
jobs:
7+
build:
8+
docker:
9+
# specify the version you desire here
10+
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
11+
- image: circleci/python:2.7
12+
13+
# Specify service dependencies here if necessary
14+
# CircleCI maintains a library of pre-built images
15+
# documented at https://circleci.com/docs/2.0/circleci-images/
16+
# - image: circleci/postgres:9.4
17+
18+
working_directory: ~/repo
19+
20+
steps:
21+
- checkout
22+
23+
- run:
24+
name: install dependencies
25+
command: |
26+
sudo pip install -U platformio
27+
28+
# other common Python testing frameworks include pytest and nose
29+
# https://pytest.org
30+
# https://nose.readthedocs.io
31+
- run:
32+
name: run tests
33+
command: |
34+
pio test -e native
35+
36+
- store_artifacts:
37+
path: test-reports
38+
destination: test-reports
39+

shippable.yml

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)