-
Notifications
You must be signed in to change notification settings - Fork 429
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Give option to skip certian tests base on Tag #425
Give option to skip certian tests base on Tag #425
Conversation
Codecov Report
@@ Coverage Diff @@
## dev #425 +/- ##
============================================
- Coverage 45.92% 45.55% -0.37%
+ Complexity 2198 2141 -57
============================================
Files 108 108
Lines 25210 25210
Branches 4164 4164
============================================
- Hits 11577 11484 -93
+ Misses 11711 11682 -29
- Partials 1922 2044 +122
Continue to review full report at Codecov.
|
1 similar comment
Codecov Report
@@ Coverage Diff @@
## dev #425 +/- ##
============================================
- Coverage 45.92% 45.55% -0.37%
+ Complexity 2198 2141 -57
============================================
Files 108 108
Lines 25210 25210
Branches 4164 4164
============================================
- Hits 11577 11484 -93
+ Misses 11711 11682 -29
- Partials 1922 2044 +122
Continue to review full report at Codecov.
|
@@ -42,6 +42,8 @@ | |||
|
|||
<properties> | |||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |||
<junit.platform.version>1.0.0-M3</junit.platform.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Super !!!
I like this. In future you will able to use maven versioning plugin to upgrade latest 3rd party dependencies
give option to user to skip certain tests base on tags. (revised base on PR #114 )
For example, running the following command to build the driver will skip tests that are tagged as
slow
:If
-DskipTestTag
is not provided in the command, all tests will be executed.Will need to update ReadMe after next release.