File tree Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Expand file tree Collapse file tree 4 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 2
2
__pycache__ /
3
3
* .py [cod ]
4
4
* $py.class
5
+ test.junit.xml
5
6
6
7
# C extensions
7
8
* .so
@@ -145,4 +146,4 @@ $RECYCLE.BIN/
145
146
146
147
# Documentation
147
148
docs /_site /
148
- docs /.jekyll-metadata
149
+ docs /.jekyll-metadata
Original file line number Diff line number Diff line change @@ -20,3 +20,9 @@ versionfile_build = tableauserverclient/_version.py
20
20
tag_prefix = v
21
21
# parentdir_prefix =
22
22
23
+ [aliases]
24
+ smoke =pytest
25
+
26
+ [tool:pytest]
27
+ testpaths = test smoke
28
+ addopts = --junitxml =./test.junit.xml
Original file line number Diff line number Diff line change 16
16
license = 'MIT' ,
17
17
description = 'A Python module for working with the Tableau Server REST API.' ,
18
18
test_suite = 'test' ,
19
+ setup_requires = [
20
+ 'pytest-runner'
21
+ ],
19
22
install_requires = [
20
- 'requests>=2.11,<2.12.0a0 '
23
+ 'requests>=2.11,<3.0 '
21
24
],
22
25
tests_require = [
23
- 'requests-mock>=1.0,<1.1a0'
26
+ 'requests-mock>=1.0,<2.0' ,
27
+ 'pytest'
24
28
]
25
29
)
You can’t perform that action at this time.
0 commit comments