diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2022-09-10 15:25:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-10 07:25:44 -0600 |
commit | 1427ddaa59df661e9fe3f4b8939eb92fd1b83a88 (patch) | |
tree | 6f6c2d88ef8fe102ac297e244359e5577bfaeb36 /lib | |
parent | b4a2b8d46c952eb03299dd9c300670c74f802d71 (diff) | |
download | spack-1427ddaa59df661e9fe3f4b8939eb92fd1b83a88.tar.gz spack-1427ddaa59df661e9fe3f4b8939eb92fd1b83a88.tar.bz2 spack-1427ddaa59df661e9fe3f4b8939eb92fd1b83a88.tar.xz spack-1427ddaa59df661e9fe3f4b8939eb92fd1b83a88.zip |
ci: restore coverage computation (#32585)
* ci: restore coverage computation
* Mark "test_foreground_background" as xfail
* Mark "test_foreground_background_output" as xfail
* Make number of processes explicit, remove verbosity on linux
* Run coverage on just 3 Python jobs for linux
* Run coverage on just 3 Python jobs for linux
* Run coverage on just 2 Python jobs for linux
* Add back verbose, since before we didn't encounter the xdist internal error
* Reduce the workers to 2
* Try to use command line
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/test/cmd/debug.py | 4 | ||||
-rw-r--r-- | lib/spack/spack/test/llnl/util/tty/log.py | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lib/spack/spack/test/cmd/debug.py b/lib/spack/spack/test/cmd/debug.py index ec52234517..681987f873 100644 --- a/lib/spack/spack/test/cmd/debug.py +++ b/lib/spack/spack/test/cmd/debug.py @@ -27,7 +27,9 @@ def test_create_db_tarball(tmpdir, database): # get the first non-dotfile to avoid coverage files in the directory files = os.listdir(os.getcwd()) - tarball_name = next(f for f in files if not f.startswith(".")) + tarball_name = next( + f for f in files if not f.startswith(".") and not f.startswith("tests") + ) # debug command made an archive assert os.path.exists(tarball_name) diff --git a/lib/spack/spack/test/llnl/util/tty/log.py b/lib/spack/spack/test/llnl/util/tty/log.py index b100f209e8..333088b6af 100644 --- a/lib/spack/spack/test/llnl/util/tty/log.py +++ b/lib/spack/spack/test/llnl/util/tty/log.py @@ -341,6 +341,7 @@ def no_termios(): (mock_shell_tstp_tstp_cont_cont, no_termios), ], ) +@pytest.mark.xfail(reason="Fails almost consistently when run with coverage and xdist") def test_foreground_background(test_fn, termios_on_or_off, tmpdir): """Functional tests for foregrounding and backgrounding a logged process. @@ -460,6 +461,7 @@ def mock_shell_v_v_no_termios(proc, ctl, **kwargs): (mock_shell_v_v_no_termios, no_termios), ], ) +@pytest.mark.xfail(reason="Fails almost consistently when run with coverage and xdist") def test_foreground_background_output(test_fn, capfd, termios_on_or_off, tmpdir): """Tests hitting 'v' toggles output, and that force_echo works.""" if sys.version_info >= (3, 8) and sys.platform == "darwin" and termios_on_or_off == no_termios: |