We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0988fba commit 2545141Copy full SHA for 2545141
2 files changed
.travis.yml
@@ -25,6 +25,7 @@ env:
25
install:
26
- if [[ "$TEST_SOCKETCAN" ]]; then sudo bash test/open_vcan.sh ; fi
27
- travis_retry pip install .[test]
28
+ - pip freeze
29
30
script:
31
- |
setup.py
@@ -7,6 +7,7 @@
7
8
from __future__ import absolute_import
9
10
+import platform
11
from os import listdir
12
from os.path import isfile, join
13
import re
@@ -31,7 +32,7 @@
32
33
tests_require = [
34
'mock~=2.0',
- 'pytest~=4.3',
35
+ 'pytest~=4.6',
36
'pytest-timeout~=1.3',
37
'pytest-cov~=2.8',
38
# coveragepy==5.0 fails with `Safety level may not be changed inside a transaction`
@@ -53,7 +54,6 @@
53
54
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv)
55
pytest_runner = ["pytest-runner"] if needs_pytest else []
56
-
57
setup(
58
# Description
59
name="python-can",
0 commit comments