cleanup tests

This commit is contained in:
ziirish 2018-12-05 17:55:16 +01:00
parent 766dc6e9a6
commit 827beed7fe
No known key found for this signature in database
GPG key ID: 72DB229A64B54E46
3 changed files with 0 additions and 6 deletions

View file

@ -6,8 +6,6 @@ import os
import tempfile
import shutil
sys.path.append('{0}/..'.format(os.path.join(os.path.dirname(os.path.realpath(__file__)))))
from burpui import create_app as BUIinit # noqa
from burpui.misc.parser.burp2 import Parser # noqa

View file

@ -1,7 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf8 -*-
import pytest
from flask import url_for

View file

@ -12,8 +12,6 @@ from flask_testing import LiveServerTestCase, TestCase
from mock import patch
from flask import url_for, session
sys.path.append('{0}/../..'.format(os.path.join(os.path.dirname(os.path.realpath(__file__)))))
from burpui import create_app as BUIinit