File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ include *.rst
2
2
include setup.py
3
3
include requirements-testing.txt
4
4
include tox.ini
5
- include .marker
5
+ recursive- include pytest_splinter/profiles *
Original file line number Diff line number Diff line change
1
+ # create virtual environment
2
+ .env :
3
+ virtualenv .env
4
+
5
+ # install all needed for development
6
+ develop : .env
7
+ .env/bin/pip install -e . -r requirements-testing.txt tox
8
+
9
+ # clean the development envrironment
10
+ clean :
11
+ -rm -rf .env
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ def run_tests(self):
48
48
49
49
version = pytest_splinter .__version__ ,
50
50
cmdclass = {'test' : Tox },
51
+ include_package_data = True ,
51
52
url = 'https://github.com/pytest-dev/pytest-splinter' ,
52
53
install_requires = [
53
54
'setuptools' ,
You can’t perform that action at this time.
0 commit comments