From 0d38e826ada38e90948dd62f7e13292389928620 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Mon, 18 Nov 2024 21:55:21 +1100 Subject: [PATCH 01/27] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 58cf3d4ca9..436d39215a 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ ### -afw +afw - testing ### ``afw`` is a package in the `LSST Science Pipelines `_. From 1dbc7b5f12ce9b6320714d6fdb2ebe6f4f2f9e2c Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Thu, 9 Jan 2025 17:06:47 +1100 Subject: [PATCH 02/27] breaking afw with a bad import in printers.py --- python/lsst/gdb/afw/printers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 77533dcd26..5f2a1b1f93 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -2,6 +2,7 @@ import math import re import sys +import lets_break_this_bad_boy try: debug # noqa: F821 From 5e757161e8b1b838bb8701744e634cfbb7b5979d Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:08:32 +1100 Subject: [PATCH 03/27] Adding more errors in printers.py --- python/lsst/gdb/afw/printers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 5f2a1b1f93..affae5b5c8 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -4,8 +4,9 @@ import sys import lets_break_this_bad_boy +lets_break_this_bad_boy.option try: - debug # noqa: F821 + debu # noqa: F821 except Exception: debug = False From 3860084f6c76f6466e6e98932953dc8405fb3588 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:12:06 +1100 Subject: [PATCH 04/27] another break test printers.py --- python/lsst/gdb/afw/printers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index affae5b5c8..8d077dde6c 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -6,7 +6,7 @@ lets_break_this_bad_boy.option try: - debu # noqa: F821 + debug # noqa: F821 except Exception: debug = False From 53641aec2a788cfde75c0b147617b3fa485277a5 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:14:32 +1100 Subject: [PATCH 05/27] fixing linting issue printers.py --- python/lsst/gdb/afw/printers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 8d077dde6c..07d7057cb9 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -4,7 +4,7 @@ import sys import lets_break_this_bad_boy -lets_break_this_bad_boy.option + try: debug # noqa: F821 except Exception: @@ -13,7 +13,7 @@ import optparse argparse = None # we're using optparse - +lets_break_this_bad_boy.option class GdbOptionParser(optparse.OptionParser): """A subclass of the standard optparse OptionParser for gdb From fd2b89e7bcd7a932d11d875458176094e113806c Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:21:29 +1100 Subject: [PATCH 06/27] linting printers.py --- python/lsst/gdb/afw/printers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 07d7057cb9..9bd979360d 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -4,7 +4,6 @@ import sys import lets_break_this_bad_boy - try: debug # noqa: F821 except Exception: @@ -13,7 +12,8 @@ import optparse argparse = None # we're using optparse -lets_break_this_bad_boy.option +lets_break_this_bad_boy.options(2) + class GdbOptionParser(optparse.OptionParser): """A subclass of the standard optparse OptionParser for gdb From 75e98ce669c793bb4ff79042566e7065e18830ec Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:23:19 +1100 Subject: [PATCH 07/27] Update printers.py --- python/lsst/gdb/afw/printers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 9bd979360d..3db4c5f7e9 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -12,6 +12,7 @@ import optparse argparse = None # we're using optparse + lets_break_this_bad_boy.options(2) class GdbOptionParser(optparse.OptionParser): From e32f8d2080b3ec8f344ce122b0370d2c1039cbba Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:24:58 +1100 Subject: [PATCH 08/27] Update printers.py --- python/lsst/gdb/afw/printers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 3db4c5f7e9..1c1bf396b1 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -15,6 +15,7 @@ lets_break_this_bad_boy.options(2) + class GdbOptionParser(optparse.OptionParser): """A subclass of the standard optparse OptionParser for gdb From 253ea31067b706c9e312f30ab806085aedb3fd37 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 14 Jan 2025 12:43:15 +1100 Subject: [PATCH 09/27] ignoring linting to see if it breaks in printers.py --- python/lsst/gdb/afw/printers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 1c1bf396b1..4a44bfe9b0 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -1,3 +1,5 @@ +# flake8: noqa + import gdb import math import re @@ -13,8 +15,6 @@ argparse = None # we're using optparse -lets_break_this_bad_boy.options(2) - class GdbOptionParser(optparse.OptionParser): """A subclass of the standard optparse OptionParser for gdb From 35a1977076c793226a98393d1ed75b6141334cb4 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 14 Jan 2025 13:35:28 +1100 Subject: [PATCH 10/27] bad import in test_Storable.py bad import test --- tests/test_Storable.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_Storable.py b/tests/test_Storable.py index 4f956e03ee..dd817ba314 100644 --- a/tests/test_Storable.py +++ b/tests/test_Storable.py @@ -25,6 +25,7 @@ import gc import unittest import yaml +import thisdoesntexist import lsst.utils.tests From 5c8b8924a31ca6236fb4361ff455afb8f0fdcf48 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 14 Jan 2025 14:48:07 +1100 Subject: [PATCH 11/27] remove nonsense import in test_Storable.py --- tests/test_Storable.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_Storable.py b/tests/test_Storable.py index dd817ba314..4f956e03ee 100644 --- a/tests/test_Storable.py +++ b/tests/test_Storable.py @@ -25,7 +25,6 @@ import gc import unittest import yaml -import thisdoesntexist import lsst.utils.tests From 1ac9ff0f00a25c41e83c6c65e2bcf44a7666ce79 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 21 Jan 2025 12:00:33 +1100 Subject: [PATCH 12/27] remove linter ignore to break jenkins test --- python/lsst/gdb/afw/printers.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 4a44bfe9b0..34ccaccd6f 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -1,5 +1,3 @@ -# flake8: noqa - import gdb import math import re From 6ed89ba78bb0b61788df19041256960d6084f4a6 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 21 Jan 2025 15:46:03 +1100 Subject: [PATCH 13/27] remove error in printers.py --- python/lsst/gdb/afw/printers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 34ccaccd6f..7d48f14178 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -2,7 +2,6 @@ import math import re import sys -import lets_break_this_bad_boy try: debug # noqa: F821 From fa67a3af8a5d03dad897f438971cd65e14ca8e76 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 21 Jan 2025 15:47:15 +1100 Subject: [PATCH 14/27] fix printers.py --- python/lsst/gdb/afw/printers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 7d48f14178..77533dcd26 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -12,7 +12,6 @@ argparse = None # we're using optparse - class GdbOptionParser(optparse.OptionParser): """A subclass of the standard optparse OptionParser for gdb From ea4f42c96929edb0ff5651da307ea3350e50edb1 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 21 Jan 2025 16:44:27 +1100 Subject: [PATCH 15/27] break printers.py --- python/lsst/gdb/afw/printers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 77533dcd26..26e9ece316 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -2,6 +2,7 @@ import math import re import sys +import nonsense try: debug # noqa: F821 From 8294f43444e074d7c22e61123d5e7150ea3b2410 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 21 Jan 2025 16:56:07 +1100 Subject: [PATCH 16/27] fix printers.py --- python/lsst/gdb/afw/printers.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/lsst/gdb/afw/printers.py b/python/lsst/gdb/afw/printers.py index 26e9ece316..77533dcd26 100644 --- a/python/lsst/gdb/afw/printers.py +++ b/python/lsst/gdb/afw/printers.py @@ -2,7 +2,6 @@ import math import re import sys -import nonsense try: debug # noqa: F821 From 4c10faa8ff23937881b17f2887a010f545269dab Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 4 Feb 2025 12:37:38 +1100 Subject: [PATCH 17/27] Create nonsense.py breaking afw pr for checks --- nonsense.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 nonsense.py diff --git a/nonsense.py b/nonsense.py new file mode 100644 index 0000000000..9241a0c688 --- /dev/null +++ b/nonsense.py @@ -0,0 +1 @@ +import nonsense From d0c91002a229c82ab7e0177566b14b6c1c7b3267 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 4 Feb 2025 21:37:15 +1100 Subject: [PATCH 18/27] Delete nonsense.py --- nonsense.py | 1 - 1 file changed, 1 deletion(-) delete mode 100644 nonsense.py diff --git a/nonsense.py b/nonsense.py deleted file mode 100644 index 9241a0c688..0000000000 --- a/nonsense.py +++ /dev/null @@ -1 +0,0 @@ -import nonsense From 83fad88445b012cfaf719fdc017d6e88ac742d62 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 18 Mar 2025 22:24:19 +1100 Subject: [PATCH 19/27] Create nonsense.py --- nonsense.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 nonsense.py diff --git a/nonsense.py b/nonsense.py new file mode 100644 index 0000000000..abce74cad6 --- /dev/null +++ b/nonsense.py @@ -0,0 +1 @@ +import nonsenseee From 1a7e222cb54ad278412517c6fe64dd83541df3d6 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 18 Mar 2025 22:24:48 +1100 Subject: [PATCH 20/27] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 436d39215a..58cf3d4ca9 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ ### -afw - testing +afw ### ``afw`` is a package in the `LSST Science Pipelines `_. From f7e1ee4fa6d227ba7930c55695dfb50e99735193 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 18 Mar 2025 22:30:55 +1100 Subject: [PATCH 21/27] fix nonsense.py --- nonsense.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nonsense.py b/nonsense.py index abce74cad6..dfcac524c5 100644 --- a/nonsense.py +++ b/nonsense.py @@ -1 +1 @@ -import nonsenseee +# this is a test From fb8250e38140e8c7d1910c4d1a3f2341ed57e562 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Tue, 22 Apr 2025 23:03:47 +1000 Subject: [PATCH 22/27] Update nonsense.py --- nonsense.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nonsense.py b/nonsense.py index dfcac524c5..55a34cc918 100644 --- a/nonsense.py +++ b/nonsense.py @@ -1 +1,2 @@ # this is a test +#another test From eb671025b359cdb720e7c541c7cea0f5a20cf2e3 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Wed, 23 Apr 2025 22:20:59 +1000 Subject: [PATCH 23/27] Update nonsense.py --- nonsense.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nonsense.py b/nonsense.py index 55a34cc918..dfcac524c5 100644 --- a/nonsense.py +++ b/nonsense.py @@ -1,2 +1 @@ # this is a test -#another test From a158461ae2165a85cabb7f001f4db1f0b2645726 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Mon, 28 Apr 2025 16:40:03 +1000 Subject: [PATCH 24/27] Update nonsense.py --- nonsense.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nonsense.py b/nonsense.py index dfcac524c5..04e91a2118 100644 --- a/nonsense.py +++ b/nonsense.py @@ -1 +1,2 @@ # this is a test +import nonsenseeeee From 22759975b1d773932e918e2c1d28c28f10b8a764 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Mon, 28 Apr 2025 16:57:32 +1000 Subject: [PATCH 25/27] Update nonsense.py --- nonsense.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nonsense.py b/nonsense.py index 04e91a2118..dfcac524c5 100644 --- a/nonsense.py +++ b/nonsense.py @@ -1,2 +1 @@ # this is a test -import nonsenseeeee From 11c5c2b1d17e5b0c26789981408fdf09057ff568 Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Thu, 1 May 2025 22:29:53 +1000 Subject: [PATCH 26/27] Update nonsense.py --- nonsense.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nonsense.py b/nonsense.py index dfcac524c5..9f98ea81c5 100644 --- a/nonsense.py +++ b/nonsense.py @@ -1 +1,2 @@ # this is a test +import nonsense From d37b5f22136f61d0badf6986003e1a9991f5b35b Mon Sep 17 00:00:00 2001 From: aranabhat <138172063+aranabhat@users.noreply.github.com> Date: Thu, 1 May 2025 22:43:50 +1000 Subject: [PATCH 27/27] Update nonsense.py --- nonsense.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nonsense.py b/nonsense.py index 9f98ea81c5..dfcac524c5 100644 --- a/nonsense.py +++ b/nonsense.py @@ -1,2 +1 @@ # this is a test -import nonsense