Skip to content

Commit 28ac553

Browse files
committed
include test in circleci config
1 parent 0fc308a commit 28ac553

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.circleci/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ install: &install
1616
name: install dependencies for build
1717
command: |
1818
$HOME/conda/bin/pip install -r ~/repo/.circleci/requirements.txt
19+
20+
test_jobs: &test_jobs
21+
name: test the jobs metadata
22+
command: |
23+
cd ~/repo/tests
24+
$HOME/conda/bin/python -m unittest test_jobs
25+
1926
install_python_3: &install_python_3
2027
name: install Python 3.5 dependencies
2128
command: |
@@ -73,6 +80,7 @@ jobs:
7380
key: rubygems-v1
7481
paths:
7582
- vendor/bundle
83+
- run: *test_jobs
7684
- run: *build_jekyll
7785
- store_artifacts:
7886
path: ~/repo/_site

0 commit comments

Comments
 (0)