Revert to the original per-file invocation style — it allows running tests selectively by commenting out individual lines. Part-of: <http://gitlab.vnc.biz/uxf/vnctalk-prosody/-/merge_requests/3>
40 lines
1.5 KiB
Bash
Executable File
40 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
|
|
export XMPP_HOST=xmpp.microlab.zimbra-vnc.de
|
|
export XMPP_PORT=30522
|
|
export XMPP_JID=lisa.porter@microlab.zimbra-vnc.de
|
|
export XMPP_PASSWORD=q3tx65test
|
|
export XMPP_JID2=richard.watson@microlab.zimbra-vnc.de
|
|
export XMPP_PASSWORD2=q3tx65test
|
|
export XMPP_DOMAIN=microlab.zimbra-vnc.de
|
|
export BOSH_URL=https://xmpp.microlab.zimbra-vnc.de/http-bind
|
|
export WS_URL=wss://xmpp.microlab.zimbra-vnc.de/xmpp-websocket
|
|
export REST_URL=https://xmpprest.microlab.zimbra-vnc.de/rest
|
|
export MUC_DOMAIN=conference.microlab.zimbra-vnc.de
|
|
export ADMIN_TELNET_HOST=127.0.0.1
|
|
export ADMIN_TELNET_PORT=5582
|
|
export REST_USER=vnctalk
|
|
export REST_PASSWORD=ohtai2Eicai4aiting7bec2am6Aih
|
|
export PG_HOST=localhost
|
|
export PG_PORT=14322
|
|
export PG_DB=prosody
|
|
export PG_USER=prosody
|
|
export PG_PASSWORD=eS5Gi7ahzo3chaiXiel0ief
|
|
|
|
pytest tests/test_01_core.py -v -c tests/pytest.ini
|
|
pytest tests/test_02_muc.py -v -c tests/pytest.ini
|
|
pytest tests/test_03_vnctalk.py -v -c tests/pytest.ini
|
|
pytest tests/test_04_infra.py -v -c tests/pytest.ini
|
|
pytest tests/test_05_patches.py -v -c tests/pytest.ini
|
|
pytest tests/test_06_postgres.py -v -c tests/pytest.ini
|
|
pytest tests/test_07_module_load.py -v -c tests/pytest.ini
|
|
pytest tests/test_08_image_patches.py -v -c tests/pytest.ini
|
|
pytest tests/test_09_http_sideeffects.py -v -c tests/pytest.ini
|
|
pytest tests/test_10_smacks.py -v -c tests/pytest.ini
|
|
pytest tests/test_11_smokes.py -v -c tests/pytest.ini
|
|
pytest tests/test_12_image_runtime.py -v -c tests/pytest.ini
|
|
|
|
# Or run the whole suite at once:
|
|
# pytest tests/ -v -c tests/pytest.ini
|