Skip to content

Commit

Permalink
Only test simeval/qa html on Windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
rikardn committed Jun 19, 2023
1 parent 0b74995 commit 19760ef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion test/system/qa.t
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ foreach my $command (@commands) {
$rc = $rc >> 8;

ok($rc == 0, "$command");
ok(-e 'qa_pheno/PsN_qa_plots.html');
if ($^O eq 'MSWin32') {
ok(-e 'qa_pheno/PsN_qa_plots.html');
}
}

remove_test_dir($tempdir);
Expand Down
4 changes: 3 additions & 1 deletion test/system/simeval.t
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ foreach my $command (@commands){
ok ($rc == 0, "$command, should run ok");
}

ok(-e ($tempdir . '/simeval_dir1/PsN_simeval_plots.html'), 'generate simeval plots');
if ($^O eq 'MSWin32') {
ok(-e ($tempdir . '/simeval_dir1/PsN_simeval_plots.html'), 'generate simeval plots');
}

remove_test_dir($tempdir);

Expand Down

0 comments on commit 19760ef

Please sign in to comment.