Skip to content

Commit

Permalink
Merge branch 'tests' into rebuild-python312-0-1_hbee979
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Oct 8, 2023
2 parents f26e247 + ca05966 commit bddd4ba
Showing 1 changed file with 22 additions and 13 deletions.
35 changes: 22 additions & 13 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,22 +64,31 @@ test:
{% set tests_to_skip = tests_to_skip + " or test_http_response_parser_bad_chunked_strict_py[pyloop]" %}
{% set tests_to_skip = tests_to_skip + " or test_http_response_parser_strict_headers[c-parser-pyloop]" %}
{% set tests_to_skip = tests_to_skip + " or test_tcp_connector_raise_connector_ssl_error[pyloop]" %}
{% set tests_to_skip = tests_to_skip + " or test_feed_eof_no_err_brotli" %}
{% set tests_to_skip = tests_to_skip + " or test_http_response_parser_bad_chunked_strict_c[pyloop]" %}
{% set tests_to_skip = tests_to_skip + " or test_http_response_parser_bad_chunked_strict_py[pyloop]" %}
{% set tests_to_skip = tests_to_skip + " or test_http_response_parser_strict_headers[c-parser-pyloop]" %}
{% set tests_to_skip = tests_to_skip + " or test_request_tracing_url_params[pyloop]" %}
{% set tests_to_skip = tests_to_skip + " or test_tcp_connector_raise_connector_ssl_error[pyloop]" %}
# test failing with python >=3.11
{% set tests_to_skip = tests_to_skip + " or test_https_proxy_unsupported_tls_in_tls[pyloop-https]" %} # [py>=311]
# fails to open socket at desired IP/port
{% set tests_to_skip = tests_to_skip + " or (test_web_server and test_handler_cancellation)" %} # [unix]
{% set tests_to_skip = tests_to_skip + " or (test_web_server and test_no_handler_cancellation)" %} # [unix]
{% set tests_to_skip = tests_to_skip + " or (test_web_server and test_handler_cancellation)" %} # [unix]
{% set tests_to_skip = tests_to_skip + " or (test_web_server and test_no_handler_cancellation)" %} # [unix]
# emulation is too slow for expected speed
{% set tests_to_skip = tests_to_skip + " or (test_imports and test_import_time)" %} # [aarch64 or ppc64le]
{% set tests_to_skip = tests_to_skip + " or (test_imports and test_import_time)" %} # [aarch64 or ppc64le]
# aio seems to hard-code expectation for cpython (i.e. not "pypy3.9" in SP_DIR path)
{% set tests_to_skip = tests_to_skip + " or test_static_route_user_home" %}
# not working with pypy
{% set tests_to_skip = tests_to_skip + " or test_c_parser_loaded" %} # [python_impl == "pypy"]
{% if win and python_impl == "pypy" %}
{% set tests_to_skip = tests_to_skip + " or test_access_to_the_file_with_spaces" %}
{% set tests_to_skip = tests_to_skip + " or test_follow_symlink[pyloop]" %}
{% set tests_to_skip = tests_to_skip + " or test_static_file_huge[pyloop] " %}
{% set tests_to_skip = tests_to_skip + " or test_subapp_reverse_static_url[pyloop]" %}
{% set tests_to_skip = tests_to_skip + " or test_unsupported_upgrade[pyloop] " %}
{% endif %}
{% set tests_to_skip = tests_to_skip + " or test_static_route_user_home" %} # [python_impl == "pypy"]
# not working with pypy (all platforms)
{% set tests_to_skip = tests_to_skip + " or test_c_parser_loaded" %} # [python_impl == "pypy"]
{% set tests_to_skip = tests_to_skip + " or test_invalid_character[pyloop]" %} # [python_impl == "pypy"]
{% set tests_to_skip = tests_to_skip + " or test_invalid_linebreak[pyloop]" %} # [python_impl == "pypy"]
# not working with pypy (win)
{% set tests_to_skip = tests_to_skip + " or test_access_to_the_file_with_spaces" %} # [python_impl == "pypy" and win]
{% set tests_to_skip = tests_to_skip + " or test_follow_symlink[pyloop]" %} # [python_impl == "pypy" and win]
{% set tests_to_skip = tests_to_skip + " or test_static_file_huge[pyloop] " %} # [python_impl == "pypy" and win]
{% set tests_to_skip = tests_to_skip + " or test_subapp_reverse_static_url[pyloop]" %} # [python_impl == "pypy" and win]
{% set tests_to_skip = tests_to_skip + " or test_unsupported_upgrade[pyloop] " %} # [python_impl == "pypy" and win]
- pytest sources/tests/ -k "not ({{ tests_to_skip }})"

about:
Expand Down

0 comments on commit bddd4ba

Please sign in to comment.