Code Monkey home page Code Monkey logo

Comments (20)

kevlened avatar kevlened commented on May 29, 2024 2

Thanks for the interest. Here's what I'd do:

  1. Repro
  2. Do the brief steps in CONTRIBUTING.md and make sure the existing tests were working.
  3. Write a failing test case similar to the one for pytest-html. pytest-allure needs to be added to tox.ini. I might skip this if I was unfamiliar with testing pytest plugins.
  4. I'd start by trying @SizovIgor's suggestion. The suggestion was prior to a pretty substantial change, but could be adapted.
  5. If that didn't work, I'd investigate the pytest-allure repo to determine how the reports are generated. There's probably some data that pytest-allure depends on that pytest-parallel isn't sharing across threads. All of pytest-parallel is a few hundred lines in this file.
  6. If I still couldn't figure it out, I'd open a PR with the test case (if I wrote one), so others could give it a shot.

If you try it, let me know if you run into any issues.

from pytest-parallel.

jmatthews79 avatar jmatthews79 commented on May 29, 2024

looks like this is the same issue as the --junit one

from pytest-parallel.

kevlened avatar kevlened commented on May 29, 2024

Hmm, I'd understand for --workers, but I'm not sure why it's not working for --tests-per-worker

from pytest-parallel.

jmatthews79 avatar jmatthews79 commented on May 29, 2024

Let me rephrase that just to be clear. It is being generated, but its showing 0 tests executed.

from pytest-parallel.

jmatthews79 avatar jmatthews79 commented on May 29, 2024

Hi @kevlened I was just curious if there was any plan to address the reporting bugs in the near future?

from pytest-parallel.

kevlened avatar kevlened commented on May 29, 2024

Not in the near future (probably in months, not weeks or days). I'm not focusing on Browsertron much anymore and this library was a part of that work. I'll do my best to get to them when I can. I can provide guidance for any PRs though!

from pytest-parallel.

jmatthews79 avatar jmatthews79 commented on May 29, 2024

@kevlened Completely understand, I hope I didn't come off as rude. I appreciate the work you did to create this. If I knew python other than to write some Selenium tests Id love to help. :)

from pytest-parallel.

kevlened avatar kevlened commented on May 29, 2024

No worries (and thanks)!

from pytest-parallel.

SizovIgor avatar SizovIgor commented on May 29, 2024

@kevlened Can you tell me your idea about a time for fix this issue (Bug) ?

from pytest-parallel.

SizovIgor avatar SizovIgor commented on May 29, 2024

Please, look my changes, it is help me to work with allure-pytest in paralel.
I'm test with --workers 2 and with 3,6,8,auto.
But it is have a trouble with --tests-per-worker when it is greather than 1. It is add N identical steps, where N = tests-per-worker

index 63d4175..8e71da4 100644
--- a/pytest_parallel/__init__.py
+++ b/pytest_parallel/__init__.py
@@ -8,6 +8,7 @@ import threading
 import queue as Queue
 from py._xmlgen import raw
 from multiprocessing import Manager, Process
+from allure_pytest.plugin import pytest_configure as original_pytest_configure
 
 __version__ = '0.0.9'
 
@@ -54,6 +55,7 @@ def run_test(session, item, nextitem):
 
 
 def process_with_threads(queue, session, tests_per_worker):
+    original_pytest_configure(allur_conf)
     threads = []
     for _ in range(tests_per_worker):
         thread = ThreadWorker(queue, session)
@@ -62,6 +64,9 @@ def process_with_threads(queue, session, tests_per_worker):
     [t.join() for t in threads]
 
 
+allur_conf = None
+
+
 class ThreadWorker(threading.Thread):
     def __init__(self, queue, session):
         threading.Thread.__init__(self)
@@ -69,6 +74,7 @@ class ThreadWorker(threading.Thread):
         self.session = session
 
     def run(self):
+        original_pytest_configure(allur_conf)
         while True:
             try:
                 index = self.queue.get_nowait()
@@ -87,6 +93,8 @@ class ThreadWorker(threading.Thread):
 
 @pytest.mark.trylast
 def pytest_configure(config):
+    global allur_conf
+    allur_conf = config
     workers = parse_config(config, 'workers')
     tests_per_worker = parse_config(config, 'tests_per_worker')
     if not config.option.collectonly and (workers or tests_per_worker):

from pytest-parallel.

pmqs avatar pmqs commented on May 29, 2024

@SizovIgor did you get any further with getting tests-per-worker to work?

from pytest-parallel.

kevlened avatar kevlened commented on May 29, 2024

The latest (0.1.0) is quite a big change that should resolve most reporting issues. It may solve this issue as well.

from pytest-parallel.

aditya123456 avatar aditya123456 commented on May 29, 2024

is this issue resolved? i am still facing this issue with 0.1.0

from pytest-parallel.

EitanBe avatar EitanBe commented on May 29, 2024

Hi @kevlened
Thank you for your response.
I have same issue:
allure-pytest==2.8.6
pytest==6.0.1
pytest-parallel==0.1.0
Do you know when it can be resolve BTW, same with report portal.
Thanks!

from pytest-parallel.

talgabza avatar talgabza commented on May 29, 2024

I'm facing the same issue

Any solution/workaround for this problem?

from pytest-parallel.

eldbud avatar eldbud commented on May 29, 2024

Facing same issue.

@kevlened - If i were to try and change the current situation, do you have a recommendation for a starting point? where in the repo should i investigate?

from pytest-parallel.

Phincle avatar Phincle commented on May 29, 2024

Facing same issue.

from pytest-parallel.

door7474 avatar door7474 commented on May 29, 2024

Facing same issue.

from pytest-parallel.

Jabyn1031 avatar Jabyn1031 commented on May 29, 2024

Any solution for this issue?

from pytest-parallel.

b0mbays avatar b0mbays commented on May 29, 2024

Same issue still. Any progress on this?

from pytest-parallel.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.