utPLSQL / utPLSQL-maven-plugin

Maven plugin for running Unit Tests with utPLSQL v3
Apache License 2.0
13 stars 11 forks source link

Add support for tags (3.1.7 feature) #50

Closed michalpravda closed 4 years ago

michalpravda commented 4 years ago

I would like to be able to declare tags of tests I [don't] want to run.

Semantically the same ability as: select * from table(ut.run(a_tags => 'api,fast,-complex'));

Probably like: <configuration><tests><test><tags>api,fast,-complex</tags></test></tests></configuration>

pesse commented 4 years ago

I agree that this would be awesome - unfortunately we don't have an active maintainer for the Maven plugin at the moment. It shouldn't be too complicated to add the functionality because it is already implemented in the java-api. Maybe you want to get engaged yourself with open source? :)

michalpravda commented 4 years ago

I'll try, but knowing little about Java and nothing about Maven it will take a while.

st 12. 2. 2020 v 10:50 odesílatel Samuel Nitsche notifications@github.com napsal:

I agree that this would be awesome - unfortunately we don't have an active maintainer for the Maven plugin at the moment. It shouldn't be too complicated to add the functionality because it is already implemented in the java-api. Maybe you want to get engaged yourself with open source? :)

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/utPLSQL/utPLSQL-maven-plugin/issues/50?email_source=notifications&email_token=ACWR6GRJKXGOBYAMZ4AOXSDRCPA7RA5CNFSM4KRPG3Y2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOELQEEQQ#issuecomment-585122370, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACWR6GXVIJYTCPA4SKSMDEDRCPA7RANCNFSM4KRPG3YQ .

viniciusam commented 4 years ago

Hi, I already started the work for this feature on branch release/3.1.3. I want to add one more feature, but I hope to release it this week.

viniciusam commented 4 years ago

I've pushed a snapshot version with the changes:

<groupId>org.utplsql</groupId>
<artifactId>utplsql-maven-plugin</artifactId>
<version>3.1.3-20200225.224438-25</version>

I will create the official release later this week.

michalpravda commented 4 years ago

Thank you. MP