Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
burp-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
18
Issues
18
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ziirish
burp-ui
Commits
ffbe1995
Verified
Commit
ffbe1995
authored
Jul 16, 2019
by
Ziirish
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
don't need a Makefile anymore
parent
02321bee
Pipeline
#1653
failed with stages
in 4 minutes and 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
34 deletions
+0
-34
Makefile
Makefile
+0
-34
No files found.
Makefile
deleted
100644 → 0
View file @
02321bee
.PHONY
:
all test clean_coverage doc doc_coverage clean pep8 pyflakes check
all
:
@
echo
'test run the unit tests'
@
echo
'flake8 check pep8 compliance'
@
echo
'check make sure you are ready to commit'
@
echo
'clean cleanup the source tree'
doc_coverage
:
@
echo
'Running docstring coverage...'
@
docstring-coverage burpui
test
:
clean_coverage
@
echo
'Running all tests...'
@
nosetests
--with-coverage
--cover-package
=
burpui
test
/test_burpui.py
doc
:
@
echo
'Generating documentation...'
@
cd
docs
&&
make html
clean
:
@
find
.
-type
d
-name
"__pycache__"
-exec
rm
-rf
"{}"
\;
||
true
@
find
.
-type
f
-name
"*.pyc"
-delete
||
true
@
rm
-rf
build dist burp_ui.egg-info docs/_build
||
true
@
cd
docs
&&
make clean
clean_coverage
:
@
rm
-f
.coverage
flake8
:
@
echo
'Checking pep8 compliance and errors...'
@
flake8
--ignore
=
E501,E722,W605,W504 burpui
check
:
pep8 pyflakes doc_coverage test
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment