Skip to content

Commit

Permalink
move all into build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
stbraun committed May 7, 2018
1 parent 42466d4 commit a8751c7
Show file tree
Hide file tree
Showing 2 changed files with 549 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@

source venv/bin/activate

rm -rf .coveraage
rm -rf reports
mkdir reports
rm -rf venv

python3 -m venv venv

pip install -r requirements.txt

flake8 --output-file reports/flake8.txt --benchmark --count --statistics fuzzing run_fuzzer.py

nosetests --with-coverage --cover-branches --cover-inclusive --cover-html --cover-html-dir=reports/coverage --cover-xml --cover-xml-file=reports/coverage.xml tests/
pylint --rcfile=resrc/pylintrc fuzzing > reports/pylint.txt

nosetests --with-coverage --cover-branches --cover-inclusive --with-xunit --xunit-file=reports/nosetests.xml --cover-html --cover-html-dir=reports/coverage --cover-xml --cover-xml-file=reports/coverage.xml tests/

paver sdist

Expand Down

0 comments on commit a8751c7

Please sign in to comment.