Skip to content

Commit

Permalink
Merge branch 'master' into parametrised_tests_v2
Browse files Browse the repository at this point in the history
  • Loading branch information
dkx86 committed Jun 24, 2024
2 parents 95db390 + e7706a0 commit eccff26
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkg/framework/core/allure_manager/manager/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,11 @@ func (a *allureManager) NewTest(testName, packageName string, tags ...string) {
}

func (a *allureManager) FinishTest() error {
container := a.testMeta.GetContainer()
if container != nil {
if err := container.Done(); err != nil {
return err
}
}
return a.testMeta.GetResult().Done()
}

0 comments on commit eccff26

Please sign in to comment.