Skip to content

Commit

Permalink
test(scanner): Enable a Subversion test that works now
Browse files Browse the repository at this point in the history
Recent changes made the test work. However, it may take up to 20 minutes
to complete, so mark it as expensive.

Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Apr 25, 2024
1 parent 03e5fe7 commit 2f98426
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import org.ossreviewtoolkit.model.VcsInfo
import org.ossreviewtoolkit.model.VcsType
import org.ossreviewtoolkit.scanner.utils.DefaultWorkingTreeCache
import org.ossreviewtoolkit.utils.common.Os
import org.ossreviewtoolkit.utils.test.ExpensiveTag

class DefaultNestedProvenanceResolverFunTest : WordSpec() {
private val workingTreeCache = DefaultWorkingTreeCache()
Expand Down Expand Up @@ -204,7 +205,7 @@ class DefaultNestedProvenanceResolverFunTest : WordSpec() {
}
}

"work for Subversion tags".config(enabled = false /* This needs fixing, see ORT issue 6160. */) {
"work for Subversion tags".config(tags = setOf(ExpensiveTag)) {
val provenance = RepositoryProvenance(
vcsInfo = VcsInfo(
type = VcsType.SUBVERSION,
Expand Down

0 comments on commit 2f98426

Please sign in to comment.