We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a48f758 commit cbc07afCopy full SHA for cbc07af
.travis.yml
@@ -13,13 +13,18 @@ cache:
13
directories:
14
- $HOME/download-cache
15
16
+env:
17
+ - SOLRCLOUD=false
18
+ - SOLRCLOUD=true
19
+
20
addons:
21
apt_packages:
22
- default-jdk
23
24
install:
25
- "pip install 'requests>2'"
26
- "pip install ."
27
+ - 'if [[ "${SOLRCLOUD:-false}" == "true" ]]; then pip install -e .[solrcloud]; fi'
28
29
script:
30
- python run-tests.py
setup.py
@@ -31,7 +31,7 @@
31
],
32
extras_require={
33
'solrcloud': [
34
- 'kazoo==2.2'
+ 'kazoo==2.2'
35
]
36
}
37
)
0 commit comments