diff --git a/pkgs/by-name/ba/baserow/package.nix b/pkgs/by-name/ba/baserow/package.nix index f6d4439cb79d7d..ed16decbceb509 100644 --- a/pkgs/by-name/ba/baserow/package.nix +++ b/pkgs/by-name/ba/baserow/package.nix @@ -222,6 +222,9 @@ python.pkgs.buildPythonApplication rec { "test_email_notifications_are_created_correctly" "test_remove_unused_personal_views" "test_files_are_served_by_base_file_storage_by_default" + "test_files_can_be_served_by_the_backend" + "test_secure_file_serve_requires_license_to_download_files" + "test_files_can_be_downloaded_by_the_backend_with_valid_license" # AttributeError: 'called_once' is not a valid assertion. Use a spec for the mock if 'called_once' is meant to be an attribute "test_notification_creation_on_creating_row_comment_mention" "test_notify_only_new_mentions_when_updating_a_comment" @@ -235,21 +238,21 @@ python.pkgs.buildPythonApplication rec { "test_audit_log_entries_are_translated_in_the_user_language" ]; - disabledTestPaths = [ - # Disable enterprise & premium tests - # because they require a database. - "../enterprise/backend/tests" - "../enterprise/backend/src" - "../premium/backend/tests" - "../premium/backend/src" - # Disable database related tests - "tests/baserow/contrib/database" - "tests/baserow/api" - "tests/baserow/core" - "tests/baserow/ws" - # Requires an installed app or something, investigate later - "tests/baserow/contrib/builder/" - ]; + #disabledTestPaths = [ + # # Disable enterprise & premium tests + # # because they require a database. + # "../enterprise/backend/tests" + # "../enterprise/backend/src" + # "../premium/backend/tests" + # "../premium/backend/src" + # # Disable database related tests + # "tests/baserow/contrib/database" + # "tests/baserow/api" + # "tests/baserow/core" + # "tests/baserow/ws" + # # Requires an installed app or something, investigate later + # "tests/baserow/contrib/builder/" + #]; pythonImportsCheck = [ "baserow" diff --git a/pkgs/development/python-modules/opentelemetry-instrumentation-logging/default.nix b/pkgs/development/python-modules/opentelemetry-instrumentation-logging/default.nix index 5d0e946bd1b500..70feaff3de03c9 100644 --- a/pkgs/development/python-modules/opentelemetry-instrumentation-logging/default.nix +++ b/pkgs/development/python-modules/opentelemetry-instrumentation-logging/default.nix @@ -22,10 +22,7 @@ buildPythonPackage rec { opentelemetry-instrumentation ]; - nativeCheckInputs = [ - opentelemetry-test-utils - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; pythonImportsCheck = [ "opentelemetry.instrumentation.logging" ];