Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ env:
DEFAULT_LLVM_VERSION: 18
DEFAULT_GCC_VERSION: 13
MULL_LLVM_VERSION: 17
HYPOTHESIS_PROFILE: ci

concurrency:
group: ${{ github.head_ref || github.run_id }}
Expand Down
3 changes: 3 additions & 0 deletions test/pbt/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ if(${CMAKE_CXX_STANDARD} GREATER_EQUAL 20)
PYTEST
FILES
tuple.py
EXTRA_DEPS
${CMAKE_SOURCE_DIR}/include/stdx/tuple.hpp
${CMAKE_SOURCE_DIR}/include/stdx/tuple_algorithms.hpp
EXTRA_ARGS
-vv
-n2
Expand Down
3 changes: 2 additions & 1 deletion test/pbt/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
hypothesis.settings.register_profile("ci", max_examples=500)
hypothesis.settings.register_profile("fast", max_examples=10)


profile = os.environ.get("HYPOTHESIS_PROFILE", "fast")
hypothesis.settings.load_profile(profile)

def pytest_addoption(parser):
parser.addoption("--compiler", action="store", help="C++ compiler", default=None, required=False)
Expand Down
Loading