Commit fbdc9b0d authored by Chris Lamb's avatar Chris Lamb 👀
Browse files

Don't run "test_code_is_black_clean" test in autopkgtest. (Closes: Debian:#1130402)

parent 2b546c29
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,6 +15,6 @@ fi
for py in $(py3versions -s); do
    echo "@@@@@@@@ Running against $py"
    cp -r tests pyproject.toml "$AUTOPKGTEST_TMP"
    (cd "$AUTOPKGTEST_TMP"; "$py" -m pytest -vv -l -r a)
    (cd "$AUTOPKGTEST_TMP"; "$py" -m pytest -vv -l -r a -k 'not test_code_is_black_clean')
    rm -rf "${AUTOPKGTEST_TMP:?}"/*
done