blob: 17a2243a993adc87fc179682d03e87e921f99fc0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--- paho.mqtt.python-1.4.0/setup.py 2018-09-02 11:20:42.000000000 +0000
+++ paho.mqtt.python-1.4.0/setup.py 2019-08-28 02:51:55.690633661 +0000
@@ -11,10 +11,9 @@ with open('README.rst', 'rb') as readme_
readme = readme_file.read().decode('utf-8')
requirements = []
-test_requirements = ['pytest', 'pylama', 'six']
-needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
-setup_requirements = ['pytest-runner'] if needs_pytest else []
+test_requirements = ['pytest']
+setup_requirements = []
extra_requirements = {'proxy': ['PySocks']}
if sys.version_info < (3, 0):
test_requirements += ['mock']
--- paho.mqtt.python-1.4.0/setup.cfg 2018-09-02 11:20:42.000000000 +0000
+++ paho.mqtt.python-1.4.0/setup.cfg 2019-08-28 02:50:19.540632984 +0000
@@ -1,7 +1,6 @@
[aliases]
test=pytest
[tool:pytest]
-addopts=-r xs --pylama
strict=True
testpaths=tests src
[pylama]
|