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 7adc24d commit 3440d3dCopy full SHA for 3440d3d
.circleci/config.yml
@@ -8,16 +8,15 @@ jobs:
8
steps:
9
- checkout
10
- restore_cache:
11
- key: deps-{{ checksum "requirements-ci.txt" }}-{{ checksum "setup.py" }}
+ key: deps-{{ checksum "setup.py" }}
12
- run:
13
name: Install dependencies
14
command: |
15
export PATH=$HOME/miniconda3/bin:$PATH
16
conda create --name test_env python=3.8
17
source activate test_env
18
conda install -c conda-forge openbabel gcc_linux-64
19
- pip install -r requirements-ci.txt
20
- pip install .
+ pip install .[complete]
21
no_output_timeout: 1h
22
23
name: pytest
0 commit comments