Skip to content

Commit 50feb3a

Browse files
authored
Merge pull request #459 from tableau/gix_rerun_bug
Gix rerun bug
2 parents 52c4eea + cf60430 commit 50feb3a

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This project consists of documentation, example files, the Tableau Datasource Ve
77
| Tool | Latest Version |
88
|--------------------------------------------------|--------------------|
99
| Connector Packager SDK (Beta) for Tableau 2019.3 | 12-11-2019 |
10-
| TDVT | 2.1.5 (01-08-2020) |
10+
| TDVT | 2.1.7 (02-04-2020) |
1111
| Connector Packager | 0.0.1 (10-03-2019) |
1212

1313
* [Why Connectors?](#why-connectors)

tdvt/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
## Unreleased
88
- Update mocked unit tests to run correctly.
99

10+
## [2.1.7] - 2020-02-04
11+
- Change return type in tdvt.py to resolve ValueError
12+
1013
## [2.1.6] - 2020-01-13
1114
- Add string.contains.regex test to test escaping regex special characters in the Contains function
1215

tdvt/tdvt/tdvt.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,8 @@ def run_file(run_file: Path, output_dir: Path, threads: int, args) -> int:
695695
# See if we need to generate test setup files.
696696
root_directory = get_root_dir()
697697

698-
failed_tests, total_tests = run_tests_impl(enqueue_failed_tests(run_file, root_directory, args), threads, args)
698+
failed_tests, skipped_tests, disabled_tests, total_tests = \
699+
run_tests_impl(enqueue_failed_tests(run_file, root_directory, args), threads, args)
699700

700701
# This can be a retry-step.
701702
return 0

tdvt/tdvt/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.6'
1+
__version__ = '2.1.7'

0 commit comments

Comments
 (0)