Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81faa62 commit 321b023Copy full SHA for 321b023
.travis.yml
@@ -13,5 +13,5 @@ before_install:
13
- sudo update-java-alternatives -s java-8-oracle
14
15
install:
16
- - "pip install ."
17
-script: "python setup.py test"
+ - "pip install .[tests]"
+script: nosetests -vv
setup.py
@@ -40,15 +40,16 @@
40
include_package_data=True,
41
42
install_requires=INSTALL_REQUIRES,
43
+ extras_require={
44
+ 'tests': ['nose'],
45
+ },
46
entry_points={
47
'console_scripts': [
48
'html5validator = html5validator.cli:main',
49
]
50
},
51
- tests_require=[
- 'nose',
- ],
52
+ tests_require=['nose'],
53
test_suite='nose.collector',
54
55
classifiers=[
0 commit comments