1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#!/usr/bin/make -f
#DH_VERBOSE = 1
export PYBUILD_NAME = librouteros
export PYBUILD_TEST_ARGS = -k 'not test_login \
and not test_login_async \
and not test_query \
and not test_query_async \
and not test_query_In_operator \
and not test_long_word \
and not test_long_word_async \
and not test_generator_ditch \
and not test_generator_ditch_async \
and not test_add_then_remove \
and not test_add_then_remove_async \
and not test_add_then_update \
and not test_add_then_update_async \
'
%:
dh $@ --buildsystem=pybuild
|