Changeset 6083ea9
- Timestamp:
- 2021-03-31T13:22:30Z (4 years ago)
- Children:
- 19f5c94
- Parents:
- bc346a2
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
.github/workflows/ci.yml
rbc346a2 r6083ea9 53 53 54 54 python3 ./.tests/register.py 55 56 ./.tests/cleanup_bitlbee.sh57 ./.tests/setup_bitlbee.sh58 59 55 python3 ./.tests/identify.py 60 61 ./.tests/cleanup_bitlbee.sh62 ./.tests/cleanup_prosody.sh63 64 - name: unregister65 if: ${{ always() }}66 run: |67 ./.tests/setup_prosody.sh68 ./.tests/setup_bitlbee.sh69 70 56 python3 ./.tests/unregister.py 71 72 ./.tests/cleanup_bitlbee.sh73 ./.tests/setup_bitlbee.sh74 75 57 python3 ./.tests/identify_nonexist.py 76 58 -
.tests/btlib.py
rbc346a2 r6083ea9 111 111 print(cli.tmplog) 112 112 print(SEPARATOR) 113 else: 114 print('script passed') 113 115 114 116 if fail: … … 164 166 clis[1].send_priv_msg("&bitlbee", "register "+clis[1].pwd*2) 165 167 ret = (clis[1].receive(wait = 10).find('Account successfully created') != -1) 166 print("What is this"+ str(ret))167 168 return ret 168 169 -
.tests/cleanup_bitlbee.sh
rbc346a2 r6083ea9 4 4 5 5 killall bitlbee 6 rm -r /var/lib/bitlbee/* 7 sudo make uninstall-etc 6 8 7 9 printf 'Bitlbee output:\n\n' -
.tests/setup_bitlbee.sh
rbc346a2 r6083ea9 1 1 #!/bin/bash 2 2 3 3 4 killall bitlbee >/dev/null 2>/dev/null 5 rm -r /var/lib/bitlbee/* >/dev/null 2>/dev/null 6 sudo make uninstall-etc >/dev/null 2>/dev/null 4 7 5 8 set -e 9 sudo make install-etc 6 10 (BITLBEE_DEBUG=1 ./bitlbee -Dnv 2> ./debuglog) &
Note: See TracChangeset
for help on using the changeset viewer.