Changeset 6083ea9


Ignore:
Timestamp:
2021-03-31T13:22:30Z (3 years ago)
Author:
/ <>
Children:
19f5c94
Parents:
bc346a2
Message:

huh

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • .github/workflows/ci.yml

    rbc346a2 r6083ea9  
    5353
    5454        python3 ./.tests/register.py
    55 
    56         ./.tests/cleanup_bitlbee.sh
    57         ./.tests/setup_bitlbee.sh
    58 
    5955        python3 ./.tests/identify.py
    60 
    61         ./.tests/cleanup_bitlbee.sh
    62         ./.tests/cleanup_prosody.sh
    63 
    64     - name: unregister
    65       if: ${{ always() }}
    66       run: |
    67         ./.tests/setup_prosody.sh
    68         ./.tests/setup_bitlbee.sh
    69 
    7056        python3 ./.tests/unregister.py
    71 
    72         ./.tests/cleanup_bitlbee.sh
    73         ./.tests/setup_bitlbee.sh
    74        
    7557        python3 ./.tests/identify_nonexist.py
    7658
  • .tests/btlib.py

    rbc346a2 r6083ea9  
    111111            print(cli.tmplog)
    112112        print(SEPARATOR)
     113    else:
     114        print('script passed')
    113115   
    114116    if fail:
     
    164166    clis[1].send_priv_msg("&bitlbee", "register "+clis[1].pwd*2)
    165167    ret = (clis[1].receive(wait = 10).find('Account successfully created') != -1)
    166     print("What is this"+ str(ret))
    167168    return ret
    168169   
  • .tests/cleanup_bitlbee.sh

    rbc346a2 r6083ea9  
    44
    55killall bitlbee
     6rm -r /var/lib/bitlbee/*
     7sudo make uninstall-etc
    68
    79printf 'Bitlbee output:\n\n'
  • .tests/setup_bitlbee.sh

    rbc346a2 r6083ea9  
    11#!/bin/bash
    22
     3
    34killall bitlbee >/dev/null 2>/dev/null
     5rm -r /var/lib/bitlbee/* >/dev/null 2>/dev/null
     6sudo make uninstall-etc >/dev/null 2>/dev/null
    47
    58set -e
     9sudo make install-etc
    610(BITLBEE_DEBUG=1 ./bitlbee -Dnv 2> ./debuglog) &
Note: See TracChangeset for help on using the changeset viewer.