Skip to content

Commit

Permalink
try without xdist
Browse files Browse the repository at this point in the history
  • Loading branch information
agoscinski committed Jan 27, 2025
1 parent a282c67 commit d4f9706
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
# NOTE1: Python 3.12 has a performance regression when running with code coverage
# so run code coverage only for python 3.9.
run: |
pytest -n auto --db-backend ${{ matrix.database-backend }} -m 'not nightly' tests/ ${{ matrix.python-version == '3.9' && '--cov aiida' || '' }}
pytest -s --db-backend ${{ matrix.database-backend }} -m 'not nightly' tests/ ${{ matrix.python-version == '3.9' && '--cov aiida' || '' }}
- name: Upload coverage report
if: matrix.python-version == 3.9 && github.repository == 'aiidateam/aiida-core'
Expand Down
4 changes: 0 additions & 4 deletions tests/transports/test_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@ def list_open_fds():
process = psutil.Process(os.getpid())
return process.open_files()

open_fds = list_open_fds()
msg = f"Number of open file descriptor: {len(open_fds)}\n\n\n {open_fds}"
raise ValueError(msg)

try:
with SshTransport(
machine='localhost',
Expand Down

0 comments on commit d4f9706

Please sign in to comment.