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 f33f8fd commit e9519d1Copy full SHA for e9519d1
.travis.yml
@@ -4,6 +4,8 @@ python:
4
- "3.5"
5
- "3.6"
6
- "pypy-5.4"
7
+env:
8
+ - PRESTO_VERSION=0.202
9
services:
10
- docker
11
install:
integration_tests/fixtures.py
@@ -46,7 +46,9 @@ def get_latest_release():
46
raise Exception('not release found')
47
48
49
-PRESTO_VERSION = os.environ.get('PRESTO_VERSION') or get_latest_release()
+# Temporary fix because can't start 0.203
50
+# Use get_latest_release() instead
51
+PRESTO_VERSION = os.environ.get('PRESTO_VERSION') or '0.202'
52
PRESTO_HOST = '127.0.0.1'
53
PRESTO_PORT = 8080
54
0 commit comments