From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1639000-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DBAEA15817D for <garchives@archives.gentoo.org>; Wed, 5 Jun 2024 00:26:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 97B70E2A52; Wed, 5 Jun 2024 00:26:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7F4B5E2A52 for <gentoo-commits@lists.gentoo.org>; Wed, 5 Jun 2024 00:26:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 317B8335D7B for <gentoo-commits@lists.gentoo.org>; Wed, 5 Jun 2024 00:26:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 803581BFC for <gentoo-commits@lists.gentoo.org>; Wed, 5 Jun 2024 00:26:23 +0000 (UTC) From: "Wolfgang E. Sanyer" <ezzieyguywuf@gmail.com> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Wolfgang E. Sanyer" <ezzieyguywuf@gmail.com> Message-ID: <1717546739.ac27151884ede4bdac7e0a8acfd67668bde91cb9.ezzieyguywuf@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/b2sdk/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/b2sdk/b2sdk-1.21.0.ebuild X-VCS-Directories: dev-python/b2sdk/ X-VCS-Committer: ezzieyguywuf X-VCS-Committer-Name: Wolfgang E. Sanyer X-VCS-Revision: ac27151884ede4bdac7e0a8acfd67668bde91cb9 X-VCS-Branch: dev Date: Wed, 5 Jun 2024 00:26:23 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f5b57561-b23d-4258-8fc7-7da43582c2aa X-Archives-Hash: 71774dedd34bb84359ae4ffc6560995a commit: ac27151884ede4bdac7e0a8acfd67668bde91cb9 Author: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com> AuthorDate: Wed Jun 5 00:18:59 2024 +0000 Commit: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail <DOT> com> CommitDate: Wed Jun 5 00:18:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ac271518 dev-python/b2sdk: fix broken tests. There were some networked tests that weren't being skipped Signed-off-by: Wolfgang E. Sanyer <ezzieyguywuf <AT> gmail.com> Closes: https://bugs.gentoo.org/908089 dev-python/b2sdk/b2sdk-1.21.0.ebuild | 30 +++++++----------------------- 1 file changed, 7 insertions(+), 23 deletions(-) diff --git a/dev-python/b2sdk/b2sdk-1.21.0.ebuild b/dev-python/b2sdk/b2sdk-1.21.0.ebuild index 6bba19c7a..cbb725554 100644 --- a/dev-python/b2sdk/b2sdk-1.21.0.ebuild +++ b/dev-python/b2sdk/b2sdk-1.21.0.ebuild @@ -36,26 +36,10 @@ BDEPEND+=" test? ( ') )" -# These tests seem to require some b2 authentication (they're integration tests -# so this is not unreasonable) -python_test() { - # note: used to avoid an ExcessiveLineLength lint below. - local sqlite_test_path="test/unit/account_info/test_sqlite_account_info.py" - epytest \ - --deselect test/integration/test_large_files.py::TestLargeFile::test_large_file \ - --deselect test/integration/test_raw_api.py::test_raw_api \ - --deselect test/integration/test_download.py::TestDownload::test_large_file \ - --deselect test/integration/test_download.py::TestDownload::test_small \ - --deselect test/integration/test_download.py::TestDownload::test_small_unverified \ - --deselect test/integration/test_download.py::TestDownload::test_gzip \ - --deselect ${sqlite_test_path}::TestSqliteAccountProfileFileLocation::test_invalid_profile_name \ - --deselect ${sqlite_test_path}::TestSqliteAccountProfileFileLocation::test_profile_and_file_name_conflict \ - --deselect ${sqlite_test_path}::TestSqliteAccountProfileFileLocation::test_profile_and_env_var_conflict \ - --deselect ${sqlite_test_path}::TestSqliteAccountProfileFileLocation::test_profile_and_xdg_config_env_var \ - --deselect ${sqlite_test_path}::TestSqliteAccountProfileFileLocation::test_profile \ - --deselect ${sqlite_test_path}::TestSqliteAccountProfileFileLocation::test_file_name \ - --deselect ${sqlite_test_path}::TestSqliteAccountProfileFileLocation::test_env_var \ - --deselect ${sqlite_test_path}::TestSqliteAccountProfileFileLocation::test_default_file_if_exists \ - --deselect ${sqlite_test_path}::TestSqliteAccountProfileFileLocation::test_xdg_config_env_var \ - --deselect ${sqlite_test_path}::TestSqliteAccountProfileFileLocation::test_default_file -} +EPYTEST_DESELECT=( + test/integration/test_large_files.py::TestLargeFile::test_large_file + test/integration/test_raw_api.py::test_raw_api + test/integration/test_download.py + test/integration/test_upload.py + test/unit/account_info/test_sqlite_account_info.py +)