From 9bfef7c715821ef25ca1511693a5eaaa4e4b394b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 10 Jan 2013 19:54:10 +0100 Subject: Update autobahntestsuite to 0.5.2 Also small mostly insignificant changes to tests. --- test/autobahn_SUITE_data/test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/autobahn_SUITE_data/test.py') diff --git a/test/autobahn_SUITE_data/test.py b/test/autobahn_SUITE_data/test.py index 3cc5794..19c7669 100755 --- a/test/autobahn_SUITE_data/test.py +++ b/test/autobahn_SUITE_data/test.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2 +#!/usr/bin/env python import os import os.path import sys @@ -10,7 +10,7 @@ AB_TESTS_PRIV = os.getenv("AB_TESTS_PRIV") VIRTUALENV_URL = 'https://raw.github.com/pypa/virtualenv/master/virtualenv.py' VIRTUALENV_BIN = os.path.join(AB_TESTS_ENV, "virtualenv.py") -PIP_BIN = os.path.join(AB_TESTS_ENV, "bin", "pip") +INSTALL_BIN = os.path.join(AB_TESTS_ENV, "bin", "easy_install") def activate_env(env): @@ -29,7 +29,7 @@ def install_env(env): subprocess.check_call(["curl", "-sS", VIRTUALENV_URL, "-o", VIRTUALENV_BIN]) subprocess.check_call(["python", VIRTUALENV_BIN, env]) activate_env(env) - subprocess.check_call([PIP_BIN, "install", "AutobahnTestSuite"]) + subprocess.check_call([INSTALL_BIN, "http://pypi.python.org/packages/2.7/a/autobahntestsuite/autobahntestsuite-0.5.2-py2.7.egg#md5=f7480d4ca6ce4954ac05f59778de4bda"]) def client_config(): """ -- cgit v1.2.3