Skip to content

Commit

Permalink
Relabel test as 'quick' after updating pybind11
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin D. Weinberg committed Oct 14, 2024
1 parent a007705 commit 02d09fb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y build-essential libeigen3-dev libfftw3-dev libhdf5-dev libopenmpi-dev
sudo apt-get install -y build-essential libeigen3-dev libfftw3-dev libhdf5-dev libopenmpi-dev cmake gdb python3-dev libpython3-dev
sudo pip install numpy
Expand All @@ -43,7 +43,7 @@ jobs:
cmake
-DENABLE_NBODY=YES
-DENABLE_PYEXP=YES
-DCMAKE_BUILD_TYPE=Release
-DCMAKE_BUILD_TYPE=Debug
-DEigen3_DIR=/usr/include/eigen3/share/eigen3/cmake
-DCMAKE_INSTALL_PREFIX=./install
-Wno-dev
Expand Down
2 changes: 1 addition & 1 deletion extern/HighFive
Submodule HighFive updated 65 files
+7 −18 .github/workflows/ci.yml
+0 −138 .travis.yml
+25 −0 CHANGELOG.md
+6 −4 CMakeLists.txt
+22 −1 README.md
+23 −21 cmake/HighFiveWarnings.cmake
+1 −1 deps/catch2
+6 −3 doc/developer_guide.md
+17 −11 doc/doxygen-awesome-css/doxygen-awesome.css
+95 −1 doc/migration_guide.md
+1 −1 include/highfive/H5Attribute.hpp
+17 −0 include/highfive/H5DataSpace.hpp
+3 −3 include/highfive/H5Easy.hpp
+61 −9 include/highfive/H5File.hpp
+3 −23 include/highfive/H5Object.hpp
+0 −6 include/highfive/H5PropertyList.hpp
+4 −1 include/highfive/H5Version.hpp
+4 −1 include/highfive/H5Version.hpp.in
+12 −17 include/highfive/bits/H5Attribute_misc.hpp
+2 −4 include/highfive/bits/H5Converter_misc.hpp
+3 −3 include/highfive/bits/H5DataType_misc.hpp
+10 −3 include/highfive/bits/H5Dataspace_misc.hpp
+9 −9 include/highfive/bits/H5File_misc.hpp
+66 −100 include/highfive/bits/H5Inspector_misc.hpp
+0 −3 include/highfive/bits/H5Node_traits.hpp
+6 −10 include/highfive/bits/H5Node_traits_misc.hpp
+0 −6 include/highfive/bits/H5Object_misc.hpp
+0 −9 include/highfive/bits/H5PropertyList_misc.hpp
+23 −4 include/highfive/bits/H5ReadWrite_misc.hpp
+215 −33 include/highfive/bits/H5Slice_traits.hpp
+161 −14 include/highfive/bits/H5Slice_traits_misc.hpp
+29 −0 include/highfive/bits/assert_compatible_spaces.hpp
+31 −0 include/highfive/bits/convert_size_vector.hpp
+9 −0 include/highfive/bits/h5o_wrapper.hpp
+21 −0 include/highfive/bits/h5s_wrapper.hpp
+24 −6 include/highfive/boost.hpp
+8 −1 include/highfive/eigen.hpp
+149 −0 include/highfive/experimental/opencv.hpp
+34 −62 include/highfive/h5easy_bits/H5Easy_Eigen.hpp
+0 −100 include/highfive/h5easy_bits/H5Easy_opencv.hpp
+6 −50 include/highfive/h5easy_bits/H5Easy_scalar.hpp
+0 −94 include/highfive/h5easy_bits/H5Easy_xtensor.hpp
+9 −22 include/highfive/h5easy_bits/default_io_impl.hpp
+14 −3 include/highfive/span.hpp
+212 −0 include/highfive/xtensor.hpp
+1 −2 src/examples/CMakeLists.txt
+3 −4 src/examples/broadcasting_arrays.cpp
+131 −0 src/examples/select_slices.cpp
+37 −30 tests/unit/CMakeLists.txt
+80 −0 tests/unit/compary_arrays.hpp
+166 −29 tests/unit/data_generator.hpp
+24 −0 tests/unit/supported_types.hpp
+4 −225 tests/unit/test_all_types.cpp
+27 −0 tests/unit/test_boost.cpp
+248 −0 tests/unit/test_empty_arrays.cpp
+152 −15 tests/unit/test_high_five_selection.cpp
+36 −0 tests/unit/test_legacy.cpp
+59 −0 tests/unit/test_opencv.cpp
+58 −0 tests/unit/test_stl.cpp
+351 −0 tests/unit/test_string.cpp
+142 −0 tests/unit/test_xtensor.cpp
+2 −1 tests/unit/tests_high_five.hpp
+301 −686 tests/unit/tests_high_five_base.cpp
+12 −8 tests/unit/tests_high_five_easy.cpp
+0 −223 tests/unit/tests_high_five_multi_dims.cpp
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ if(ENABLE_NBODY)
PYTHONPATH=${CMAKE_BINARY_DIR}/pyEXP:$ENV{PYTHONPATH}
${PYTHON_EXECUTABLE} createCoefs.py
WORKING_DIRECTORY "${CMAKE_CURRENT_LIST_DIR}/Halo")
set_tests_properties(pyEXPCoefCreateTest PROPERTIES LABELS "long")
set_tests_properties(pyEXPCoefCreateTest PROPERTIES LABELS "quick")
endif()

# A separate test to remove the generated files if they all exist;
Expand Down

0 comments on commit 02d09fb

Please sign in to comment.