From 2d0b0098a19357b16f28279c4957a520129f5cc2 Mon Sep 17 00:00:00 2001 From: Sean Whalen Date: Thu, 26 Jul 2018 00:45:18 -0400 Subject: [PATCH] Add sdist to build automation --- .travis.yml | 1 + build.sh | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a3e98b1..cb9f03c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,4 +20,5 @@ script: - "make html" - "cd .." - "python tests.py" + - "python setup.py sdist" - "python setup.py bdist_wheel" diff --git a/build.sh b/build.sh index f48f01c..dcb8469 100755 --- a/build.sh +++ b/build.sh @@ -6,5 +6,7 @@ rstcheck README.rst cd docs && make html && cp -r _build/html/* ../../parsedmarc-docs/ cd .. rm -rf dist/ build/ -python setup.py bdist_wheel - +flake8 parsedmarc.py +flake8 tests.py +python3 setup.py sdist +python3 setup.py bdist_wheel