File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Build pre release python versions
33on : [push, pull_request]
44
55env :
6- CIBW_TEST_COMMAND_LINUX : " pytest --import-mode append {project}/tests/unit -k 'not (test_connection_initialization or test_cloud)' "
6+ CIBW_TEST_COMMAND_LINUX : " pytest --import-mode append {project}/tests/unit"
77 CIBW_BEFORE_TEST : " pip install -r {project}/test-requirements.txt"
88 CIBW_BEFORE_BUILD_LINUX : " rm -rf ~/.pyxbld && rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux && yum install -y libffi-devel libev libev-devel openssl openssl-devel"
99 CIBW_ENVIRONMENT : " CASS_DRIVER_BUILD_CONCURRENCY=2 CFLAGS='-g0 -O3'"
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ on: [push, pull_request]
44
55
66env :
7- CIBW_TEST_COMMAND_LINUX : " pytest --import-mode append {project}/tests/unit -k 'not (test_connection_initialization or test_cloud)' && EVENT_LOOP_MANAGER=gevent pytest --import-mode append {project}/tests/unit/io/test_geventreactor.py"
8- CIBW_TEST_COMMAND_MACOS : " pytest --import-mode append {project}/tests/unit -k 'not (test_multi_timer_validation or test_empty_connections or test_connection_initialization or test_timer_cancellation or test_cloud )' "
9- CIBW_TEST_COMMAND_WINDOWS : " pytest --import-mode append {project}/tests/unit -k \" not (test_deserialize_date_range_year or test_datetype or test_libevreactor or test_connection_initialization or test_cloud )\" "
7+ CIBW_TEST_COMMAND_LINUX : " pytest --import-mode append {project}/tests/unit && EVENT_LOOP_MANAGER=gevent pytest --import-mode append {project}/tests/unit/io/test_geventreactor.py"
8+ CIBW_TEST_COMMAND_MACOS : " pytest --import-mode append {project}/tests/unit -k 'not (test_multi_timer_validation or test_empty_connections or test_timer_cancellation)' "
9+ CIBW_TEST_COMMAND_WINDOWS : " pytest --import-mode append {project}/tests/unit -k \" not (test_deserialize_date_range_year or test_datetype or test_libevreactor)\" "
1010 CIBW_BEFORE_TEST : " pip install -r {project}/test-requirements.txt"
1111 CIBW_BEFORE_BUILD_LINUX : " rm -rf ~/.pyxbld && rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux && yum install -y libffi-devel libev libev-devel openssl openssl-devel"
1212 CIBW_ENVIRONMENT : " CASS_DRIVER_BUILD_CONCURRENCY=2 CFLAGS='-g0 -O3'"
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ Running Unit Tests
3131------------------
3232Unit tests can be run like so::
3333
34- python -m pytest --import-mode append tests/unit -k 'not (test_connection_initialization or test_cloud)'
34+ python -m pytest --import-mode append tests/unit
3535 EVENT_LOOP_MANAGER=gevent python -m pytest --import-mode append tests/unit/io/test_geventreactor.py
3636 EVENT_LOOP_MANAGER=eventlet python -m pytest --import-mode append tests/unit/io/test_eventletreactor.py
3737
You can’t perform that action at this time.
0 commit comments