forked from riptano/ccm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently travis runs with JDK11 and tests that bring up nodes don't work because of ``` [node1 ERROR] b"intx ThreadPriorityPolicy=42 is outside the allowed range [ 0 ... 1 ]\nImproperly specified VM option 'ThreadPriorityPolicy=42'\nError: Could not create the Java Virtual Machine.\nError: A fatal exception has occurred. Program will exit." ``` Another issue is that the build doesn't work with Python 3.4. It makes sense here to test with latest C* 4.0 and with Python 3.8.
- Loading branch information
Eduard Tudenhöfner
authored
Apr 17, 2020
1 parent
b2d1d0f
commit ecaf6c9
Showing
2 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
dist: xenial | ||
language: python | ||
python: | ||
- "2.7.13" | ||
- "3.4.5" | ||
- "3.5.4" | ||
- "3.6.3" | ||
- "3.6.10" | ||
- "3.7.7" | ||
- "3.8.2" | ||
install: | ||
- pip install pylint six pyyaml paramiko | ||
script: | ||
- pylint --py3k --disable=W1633,W1648,W1662 ccmlib | ||
- pylint --disable=all --enable=E,F ccmlib | ||
- nosetests | ||
jdk: | ||
- openjdk11 | ||
env: | ||
- CASSANDRA_USE_JDK11=true | ||
addons: | ||
apt: | ||
packages: | ||
- ant | ||
- ant-optional |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters