Note: I think autopkgtest is very smart and it would be possible to skip tests conditionally with some ifeqs in debian/rules, as autopkgtest reads debian/rules.
My only concern is that currently it's everything together: # Skip tests requiring network connection, also flaky tests and ones requiring GPU export PYBUILD_TEST_ARGS = -k 'not test_citeseer and not test_enzymes and not test_mutag and not _on_cora and not test_asap and not test_feature_store and not test_two_hop and not test_graph_unet and not test_spspmm and not test_add_metapaths and not test_type_repr' I would try to split them like this for clarity, but I don't know which tests belong to which category: # network tests SKIP_TESTS := "not etc" # flaky tests SKIP_TESTS += "and not etc" # GPU tests SKIP_TESTS += "and not etc" If you know and tell the categories they belong I could take care of everything else. Thanks.