We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We run tests via parallel in our testNG,
We attempt to connect to method that starts klov/extent reporter via
public void beforeSuite() { synchronized (lock) { if (!initialised) { startResult(); initialised = true; } }
However, we still see Klov being attached to multiple views although they have same report # 3
Best
The text was updated successfully, but these errors were encountered:
Basically you want all the parallel run results flushed to a single launch. Let say into launch #1167.. I am also looking for the same
Sorry, something went wrong.
Hi, I got it working similarly as in your code by keeping ExtentReports, ExtentKlovReporter & ExtentSparkReporter static:
private static ExtentReports extent = null; private static ExtentKlovReporter klovReporter = null; private static ExtentSparkReporter htmlReporter = null;
and initializing them only once when they are still null:
public synchronized static ExtentReports getReporter() { if (extent == null) extent = new ExtentReports(); return extent; }
No branches or pull requests
We run tests via parallel in our testNG,
We attempt to connect to method that starts klov/extent reporter via
However, we still see Klov being attached to multiple views although they have same report # 3
Best
The text was updated successfully, but these errors were encountered: