From 64766a4c1077d7c815198ce568b2031005c687fa Mon Sep 17 00:00:00 2001 From: Pouryafard75 Date: Wed, 14 Feb 2024 01:17:57 -0500 Subject: [PATCH] Fix the excluded tests for PR environment --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 10b74eb23..bd46141b9 100644 --- a/build.gradle +++ b/build.gradle @@ -39,8 +39,8 @@ test { useJUnitPlatform() maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1 if (project.hasProperty('notoken')) { - exclude '**/GHRepositoryWrapperTest.java' - exclude '**/TestCommandLine.class' + exclude '**/GHRepositoryWrapperTest.*' + exclude '**/TestCommandLine.*' print 'Skipping tests that require a GitHub token' } }