pytest-xdist is a plugin for pytest allowing to run tests in parallel. I installed it via pip but I can't get it to run in combination with IPytest. I allways get ExitCode.NO_TESTS_COLLECTED: 5 I tried so far creating a ipynb notebook wi...
and execute it with the following command: pytest --parallel-threads=3 tests/test_abc.py -v and I see the following output: === FAILURES === ___
I'm using Poetry in a Jenkins pipeline to install packages from a private repository for the pytest stage: withDockerContainer(image:'***.com/python:3.12.1-slim-bookworm',args:'-u root') { sh"pip install poetry==${env.POETRY_VERSION}"+"--trusted-host${env.TRUSTED_PIP_HOST}"+"--in...
name: Python package on: [push, pull_request] env: target_python_version: 3.8 jobs: test: runs-on: ubuntu-latest strategy: max-parallel: 5 matrix: python-version: [3.7, "${{env.target_python_version}}"] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python...