Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add basic GUI test of profile page #474

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ services:
args:
USER_ID: ${USER_ID:-1001}
GROUP_ID: ${GROUP_ID:-1001}
dockerfile: Dockerfile
command: bin/wait-for-postgres.sh python manage.py runserver 0.0.0.0:8002
# command: bin/wait-for-postgres.sh gunicorn --limit-request-line 7168 --worker-class gevent municipal_finance.wsgi:application -t 600 --log-file - -b 0.0.0.0:8002
volumes:
Expand Down
Empty file removed formats/__init__.py
Empty file.
Empty file removed formats/en_ZA/__init__.py
Empty file.
1 change: 0 additions & 1 deletion formats/en_ZA/formats.py

This file was deleted.

15 changes: 15 additions & 0 deletions municipal_finance/templates/_videos.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{% load static %}

<div class="video-chooser">
<div class="embed-responsive embed-responsive-16by9">
<iframe id="video-iframe" frameborder="0" allowfullscreen name="video-iframe" src="https://www.youtube.com/embed/HeQiX_e8ubg?showinfo=0"></iframe>
</div>

<ul class="nav nav-pills video-choices">
<li role="presentation" class="active"><a data-lang="eng" href="https://www.youtube.com/embed/HeQiX_e8ubg">English</a></li>
<li role="presentation"><a data-lang="afr" href="https://www.youtube.com/embed/41tSx8TbSfI">Afrikaans</a></li>
<li role="presentation"><a data-lang="sot" href="https://www.youtube.com/embed/lhRjlU_ng18">Sesotho</a></li>
<li role="presentation"><a data-lang="xho" href="https://www.youtube.com/embed/KPmRJ9PGfV8">isiXhosa</a></li>
<li role="presentation"><a data-lang="zul" href="https://www.youtube.com/embed/ykTHwL41cg0">isiZulu</a></li>
</ul>
</div>
2 changes: 2 additions & 0 deletions packages.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ libpq-dev
git
# chromium for its dependencies, while we actually use the puppeteer chromium
chromium
# webdriver for selenium testing
chromium-driver
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ PyYAML==5.1.1
requests==2.20.0
requests-futures==0.9.7
s3transfer==0.3.3
selenium==3.141.0
sentry-sdk==0.19.1
simplegeneric==0.8.1
six==1.10.0
Expand Down
1 change: 0 additions & 1 deletion runtime.txt

This file was deleted.

Loading