Move docs back to root, move onionshare_gui into briefcase app, and make modifications so briefcase app will work

This commit is contained in:
Micah Lee 2020-10-13 17:28:54 -07:00
parent f4abcf1be9
commit b42f92d714
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
490 changed files with 226 additions and 14886 deletions

View file

@ -1,26 +1,5 @@
#!/bin/bash
# The script runs python tests
# Firstly, all CLI tests are run
# Then, all the GUI tests are run individually
# to avoid segmentation fault
PARAMS=""
while [ ! $# -eq 0 ]
do
case "$1" in
--rungui)
PARAMS="$PARAMS --rungui"
;;
--runtor)
PARAMS="$PARAMS --runtor"
;;
esac
shift
done
pytest $PARAMS -vvv ./tests/test_cli*.py || exit 1
for filename in ./tests/test_gui_*.py; do
pytest $PARAMS -vvv --no-qt-log $filename || exit 1
done
pytest -vvv --no-qt-log tests/test_gui_tabs.py
pytest -vvv --no-qt-log tests/test_gui_share.py
pytest -vvv --no-qt-log tests/test_gui_receive.py
pytest -vvv --no-qt-log tests/test_gui_website.py