diff --git a/e2e/test_source_oauth.py b/e2e/test_source_oauth.py index 7af40227b..6c97841f9 100644 --- a/e2e/test_source_oauth.py +++ b/e2e/test_source_oauth.py @@ -185,6 +185,9 @@ class TestSourceOAuth(SeleniumTestCase): ) self.driver.find_element(By.CSS_SELECTOR, "button[type=submit]").click() + self.wait.until( + ec.presence_of_element_located((By.CSS_SELECTOR, ".pf-c-alert__title")) + ) self.assertEqual( self.driver.find_element(By.CSS_SELECTOR, ".pf-c-alert__title").text, "Authentication Failed.", diff --git a/passbook/lib/default.yml b/passbook/lib/default.yml index 0caab8ac3..b439e5b68 100644 --- a/passbook/lib/default.yml +++ b/passbook/lib/default.yml @@ -24,7 +24,7 @@ passbook: branding: title: passbook title_show: true - logo: static/passbook/brand.svg + logo: /static/passbook/logo.svg # Optionally add links to the footer on the login page footer_links: - name: Documentation diff --git a/scripts/agent-install.sh b/scripts/agent-install.sh new file mode 100644 index 000000000..548642ded --- /dev/null +++ b/scripts/agent-install.sh @@ -0,0 +1,14 @@ +#!/bin/bash -xe +VERSION=3.8.5 + +wget https://www.python.org/ftp/python/$VERSION/Python-$VERSION.tgz +tar xvzf Python-$VERSION.tgz +cd Python-$VERSION/ + +./configure --prefix=$HOME/_work/_tool/Python/$VERSION/x64/ --enable-optimizations --with-ensurepip=install +make -j 8 +sudo make altinstall +touch $HOME/_work/_tool/Python/$VERSION/x64.complete + +ln -s $HOME/_work/_tool/Python/3.8.5/x64 $HOME/_work/_tool/Python/3/x64 +ln -s $HOME/_work/_tool/Python/3.8.5/x64 $HOME/_work/_tool/Python/3.8/x64