Sleep between running tests, to hopefully prevent segfaults in CI

This commit is contained in:
Micah Lee 2022-03-06 14:02:07 -08:00
parent 5ada415e8e
commit 5c2802d8b0
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
pytest -v tests/test_gui_tabs.py && \ pytest -v tests/test_gui_tabs.py && sleep 5 && \
pytest -v tests/test_gui_share.py && \ pytest -v tests/test_gui_share.py && sleep 5 && \
pytest -v tests/test_gui_receive.py && \ pytest -v tests/test_gui_receive.py && sleep 5 && \
pytest -v tests/test_gui_website.py && \ pytest -v tests/test_gui_website.py && sleep 5 && \
pytest -v tests/test_gui_chat.py pytest -v tests/test_gui_chat.py