Skip to content

Commit 5d3226f

Browse files
committed
test also python 3.5
1 parent c451395 commit 5d3226f

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.circleci/config.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ variables:
1010
name: create env
1111
command: |
1212
conda create -n kipoi-dev python=3.6
13+
create_env_py35: &create_env_py35
14+
run:
15+
name: create env
16+
command: |
17+
conda create -n kipoi-dev python=3.5
1318
install_git_lfs: &install_git_lfs
1419
run:
1520
name: Install git-lfs
@@ -105,6 +110,23 @@ jobs:
105110
- *store_test_results
106111
- *store_test_artifacts
107112

113+
test-py35:
114+
docker:
115+
- image: continuumio/miniconda3:4.5.12
116+
working_directory: ~/repo
117+
steps:
118+
- checkout
119+
- *update_conda
120+
- *create_env_py35
121+
- *update_pytorch
122+
- *install_conda_deps
123+
- *install_kipoi
124+
- *install_kipoiseq
125+
- *kipoi_ls
126+
- *run_tests
127+
- *run_coveralls
128+
- *store_test_results
129+
- *store_test_artifacts
108130

109131

110132
build-deploy-docs:
@@ -145,6 +167,7 @@ workflows:
145167
test:
146168
jobs:
147169
- test-py36
170+
- test-py35
148171
- build-deploy-docs:
149172
requires:
150173
- test-py36

0 commit comments

Comments
 (0)