diff --git a/.travis.yml b/.travis.yml index a48959cef7..153c3b9a06 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,6 +22,6 @@ before_script: - sleep 3 # give xvfb some time to start script: - - docker run --name pandorafms -h pandorafms -dt -v "$TRAVIS_BUILD_DIR:/tmp/pandorafms" -p 127.0.0.1:80:80 pandorafms/pandorafms-base tail -f /var/log/messages + - docker run --name pandorafms -h pandorafms -dt -v "$TRAVIS_BUILD_DIR:/tmp/pandorafms" -p 127.0.0.1:8080:80 pandorafms/pandorafms-base tail -f /var/log/messages - docker exec -t pandorafms /tmp/pandorafms/tests/test.sh - python $TRAVIS_BUILD_DIR/tests/run_console_tests.py diff --git a/tests/console/include/common_classes_60.py b/tests/console/include/common_classes_60.py index ab542fd1fc..c309ed5f11 100644 --- a/tests/console/include/common_classes_60.py +++ b/tests/console/include/common_classes_60.py @@ -52,7 +52,7 @@ class PandoraWebDriverTestCase(TestCase): cls.display = Display(visible=0, size=(800, 600)) cls.display.start() cls.driver = webdriver.Firefox() - cls.base_url = "http://127.0.0.1/" + cls.base_url = "http://127.0.0.1:8080/" @classmethod def tearDownClass(cls):