File tree Expand file tree Collapse file tree 3 files changed +11
-5
lines changed
integration_tests/src/test/java/de/psanetra/gitsemver Expand file tree Collapse file tree 3 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 22
33import de .psanetra .gitsemver .containers .GitSemverContainer ;
44import org .junit .jupiter .api .Test ;
5+ import org .junit .jupiter .api .Disabled ;
6+
57
68import static org .assertj .core .api .Assertions .assertThat ;
79
@@ -67,7 +69,7 @@ public void shouldReturnVersionsNotReachableFromHEAD() {
6769 }
6870
6971 @ Test
70- @ Ignored ("Skipping as it requires a specific version from fork source" )
72+ @ Disabled ("Skipping as it requires a specific version from fork source" )
7173 public void shouldReturnEmptyVersionOnRepoWithoutTags () {
7274 try (var container = new GitSemverContainer ()) {
7375 container .start ();
Original file line number Diff line number Diff line change 22
33import de .psanetra .gitsemver .containers .GitSemverContainer ;
44import org .junit .jupiter .api .Test ;
5+ import org .junit .jupiter .api .Disabled ;
6+
57
68import static org .assertj .core .api .Assertions .assertThat ;
79
@@ -46,7 +48,7 @@ public void shouldReturnVersionsNotReachableFromHEAD() {
4648
4749
4850 @ Test
49- @ Ignored ("Skipping as it requires a specific version from fork source" )
51+ @ Disabled ("Skipping as it requires a specific version from fork source" )
5052 public void shouldReturnEmptyVersionOnRepoWithoutTags () {
5153 try (var container = new GitSemverContainer ()) {
5254 container .start ();
Original file line number Diff line number Diff line change 22
33import de .psanetra .gitsemver .containers .GitSemverContainer ;
44import org .junit .jupiter .api .Test ;
5+ import org .junit .jupiter .api .Disabled ;
6+
57
68import java .io .IOException ;
79
@@ -99,7 +101,7 @@ public void shouldConvertPrereleaseToRelease() {
99101 /**
100102 * In this case the next command can not calculate the next version based on the commits since the latest release.
101103 */
102- @ Ignored ("Skipping as it requires a specific version from fork source" )
104+ @ Disabled ("Skipping as it requires a specific version from fork source" )
103105 @ Test
104106 public void shouldReturnErrorCodeIfLatestVersionNotReachableFromHEAD () throws IOException , InterruptedException {
105107 try (var container = new GitSemverContainer ()) {
@@ -150,7 +152,7 @@ public void shouldNotReturnErrorCodeIfLatestVersionReachableFromDetachedHEAD() t
150152
151153 }
152154
153- @ Ignored ("Skipping as it requires a specific version from fork source" )
155+ @ Disabled ("Skipping as it requires a specific version from fork source" )
154156 @ Test
155157 public void shouldReturnFirstVersionOnRepoWithoutTags () {
156158 try (var container = new GitSemverContainer ()) {
@@ -251,7 +253,7 @@ public void shouldReturnNewVersionAfterMergeWithFeatureBranchPrallelToRelease()
251253
252254 }
253255
254- @ Ignored ("Skipping as it requires a specific version from fork source" )
256+ @ Disabled ("Skipping as it requires a specific version from fork source" )
255257 @ Test
256258 public void shouldPanicIfCommitIsMissingOnShallowClone () {
257259 try (var container = new GitSemverContainer ()) {
You can’t perform that action at this time.
0 commit comments