mirror of
https://github.com/bendtherules/pytest_gui_status.git
synced 2026-08-18 21:52:18 +00:00
Add tox.ini, remove funcsigs, fix setup.py adding submodule names and update docs, update travis for using tox
This commit is contained in:
+17
-21
@@ -1,30 +1,26 @@
|
|||||||
language: python
|
language: python
|
||||||
# cache: pip
|
|
||||||
|
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
packages:
|
packages:
|
||||||
- redis-server
|
- redis-server
|
||||||
|
|
||||||
python:
|
env:
|
||||||
# major versions, test first
|
matrix:
|
||||||
- "2.7"
|
# major versions, test first
|
||||||
- "3.5-dev"
|
- TOXENV=py27
|
||||||
# other versions
|
- TOXENV=py35
|
||||||
- "2.6"
|
# other versions
|
||||||
- "3.3"
|
- TOXENV=py26
|
||||||
- "3.4"
|
- TOXENV=py33
|
||||||
- "3.5"
|
- TOXENV=py34
|
||||||
- "nightly"
|
- TOXENV=py35
|
||||||
- "pypy"
|
- TOXENV=pypy
|
||||||
# not included, for incompatibility
|
- TOXENV=pypy3
|
||||||
# - "2.5" # tarvis errs
|
# not included, for incompatibility
|
||||||
# - "3.2" # humanfriendly cant install
|
# - "2.5" # tarvis errs
|
||||||
# - "pypy3" # psutil errs
|
# - "3.2" # humanfriendly cant install
|
||||||
|
# - "pypy3" # psutil errs
|
||||||
install:
|
|
||||||
- "pip install --upgrade -r requirements.txt"
|
|
||||||
- "pip install ."
|
|
||||||
|
|
||||||
# command to run tests
|
# command to run tests
|
||||||
script: py.test -v
|
script: tox
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
Todo
|
Todo
|
||||||
------
|
------
|
||||||
|
|
||||||
1. Test on Appveyor - install redis via chocolatey
|
1. Test on Appveyor - python 2.x builds don't stop - use tox
|
||||||
|
1.1. Use tox for wrapping around py.test
|
||||||
2. Release on pypi
|
2. Release on pypi
|
||||||
3. Add well-explained readme
|
3. Add well-explained readme
|
||||||
4. use logging.debug / log file for more prints
|
4. use logging.debug / log file for more prints
|
||||||
|
|||||||
@@ -7,5 +7,4 @@ python-dateutil
|
|||||||
humanfriendly
|
humanfriendly
|
||||||
psutil
|
psutil
|
||||||
setuptools
|
setuptools
|
||||||
funcsigs
|
|
||||||
mock
|
mock
|
||||||
|
|||||||
@@ -2,13 +2,13 @@ from setuptools import setup
|
|||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
"pytest_gui_status",
|
"pytest_gui_status",
|
||||||
# 'pytest_gui_status.plugin',
|
'pytest_gui_status.status_plugin',
|
||||||
# 'pytest_gui_status.gui',
|
'pytest_gui_status.status_gui',
|
||||||
]
|
]
|
||||||
package_dir = {
|
package_dir = {
|
||||||
'pytest_gui_status': 'pytest_gui_status',
|
'pytest_gui_status': 'pytest_gui_status',
|
||||||
# 'pytest_gui_status.plugin': 'status_plugin',
|
# 'pytest_gui_status.status_plugin': 'status_plugin',
|
||||||
# 'pytest_gui_status.gui': 'status_gui',
|
# 'pytest_gui_status.status_gui': 'status_gui',
|
||||||
}
|
}
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
|||||||
Reference in New Issue
Block a user