Commit 8e6073d9 authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'main' into 31-develop-performance-measurement-build

parents fb03edbb 44c5bb4f
Loading
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -2104,6 +2104,11 @@
                    "24/64": "{sw_files_path}/swb_high1.bin",
                    "13/128": "{sw_files_path}/sw_swb1.bin",
                    "48/128": "{sw_files_path}/sw_highest.bin"
                },
                "fb": {
                    "32/64": "{sw_files_path}/sw_fb1.bin",
                    "32/128": "{sw_files_path}/sw_fb2.bin",
                    "48/256": "{sw_files_path}/sw_fb3.bin"
                }
            }
        },
@@ -2135,6 +2140,11 @@
                    "24/64": "{sw_files_path}/swb_high1.bin",
                    "13/128": "{sw_files_path}/sw_swb1.bin",
                    "48/128": "{sw_files_path}/sw_highest.bin"
                },
                "fb": {
                    "32/64": "{sw_files_path}/sw_fb1.bin",
                    "32/128": "{sw_files_path}/sw_fb2.bin",
                    "48/256": "{sw_files_path}/sw_fb3.bin"
                }
            }
        }
+130 B

File added.

No diff preview for this file type.

+130 B

File added.

No diff preview for this file type.

+130 B

File added.

No diff preview for this file type.

+4 −0
Original line number Diff line number Diff line
@@ -108,6 +108,10 @@ Commonly used options like `-n auto` are added to addopts within the [pytest] se

The `-v` (or `--verbose`) option is helpful to see what is going on.

If an error occurs that lacks details or if you see a "keyboard interrupt" reported by xdist, try running pytest with `-n 0`. This may provide more accurate details for the source of the error.

Avoid using pytest.exit in the pytest test code, and instead raise an exception. This is because xdist does not capture pytest.exit properly, hiding the error message and reporting a false keyboard interrupt.

## Custom options

`Note:`
Loading