Skip to content

Commit

Permalink
Makefile: don't ship integration tests in release tarball
Browse files Browse the repository at this point in the history
Fixes #9790
  • Loading branch information
croissanne authored and martinpitt committed Aug 20, 2018
1 parent b38d9e5 commit 1379a9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Expand Up @@ -360,7 +360,7 @@ dump-dist-gzip:
# Subdirectories to distribute everything that's committed to git
COMMITTED_DIST = \
tools/ \
test/ \
test/common \
$(NULL)

# Build up the distribution using $COMMITTED_DIST and include node_modules licenses
Expand Down
2 changes: 1 addition & 1 deletion tools/test-static-code
Expand Up @@ -37,7 +37,7 @@ if ! $PYFLAKES /dev/null >/dev/null 2>&1; then
echo "ok 2 pyflakes test # SKIP pyflakes3 not installed"

else
out=$($PYFLAKES test/ test/verify/check-* 2>&1 | grep -Ev "(unable to detect undefined names|defined from star imports|'parent' imported but unused|test/avocado/testvm.py)") || true
out=$($PYFLAKES test/ 2>&1 | grep -Ev "(unable to detect undefined names|defined from star imports|'parent' imported but unused|test/avocado/testvm.py)") || true
if [ -n "$out" ]; then
echo "$out" >&2
echo "not ok 2 pyflakes test"
Expand Down

0 comments on commit 1379a9e

Please sign in to comment.