Skip to content

Commit a29cfd5

Browse files
committed
now it should run tests
1 parent 66216dd commit a29cfd5

1 file changed

Lines changed: 24 additions & 9 deletions

File tree

.circleci/config.yml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
1-
machine:
2-
python:
3-
version: 3.5.1
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: dbwebb/courserepo:cli
46

5-
test:
6-
pre:
7-
- make install
7+
working_directory: ~/arepo
88

9-
notify:
10-
webhooks:
11-
- url: https://webhooks.gitter.im/e/c15a81fa5128754dcccc
9+
steps:
10+
- checkout
11+
12+
- restore_cache:
13+
keys:
14+
- v1-dependencies-{{ checksum "package.json" }}
15+
# fallback to using the latest cache if no exact match is found
16+
- v1-dependencies-
17+
18+
- run: make install
19+
20+
- save_cache:
21+
paths:
22+
- node_modules
23+
key: v1-dependencies-{{ checksum "package.json" }}
24+
25+
# run tests!
26+
- run: make check test

0 commit comments

Comments
 (0)