Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ESProjects
EATA
Commits
88394efd
Commit
88394efd
authored
Feb 02, 2022
by
Pietro Braghieri
Browse files
disable redundant architecture junit test in case of windows
parent
b9a4da53
Pipeline
#139002
passed with stages
in 9 minutes and 7 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
tests/eu.fbk.tools.adapter.test/src/main/java/eu/fbk/tools/adapter/script/RedundantArchitectureGeneratorTest.java
View file @
88394efd
...
...
@@ -29,6 +29,12 @@ public class RedundantArchitectureGeneratorTest extends RedundantArchitectureGen
@Test
public
void
test
()
throws
MalformedURLException
{
final
String
os
=
System
.
getProperty
(
"os.name"
);
if
(
os
.
toLowerCase
().
contains
(
"windows"
)
)
{
return
;
}
final
GenerateRedundantArchitecture
function
=
new
GenerateRedundantArchitecture
();
function
.
setArchitectureType
(
RedundantArchitectureType
.
linear
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment