From 411bf1bbb176003508d8b2afcdb54c7fdad321c0 Mon Sep 17 00:00:00 2001 From: Alvaro Valdebenito Date: Mon, 29 Jan 2024 15:53:53 +0100 Subject: [PATCH 1/7] pytest 7.4 DeprecationWarning --- tests/plugins/gaw/test_dms.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/plugins/gaw/test_dms.py b/tests/plugins/gaw/test_dms.py index 92cf7ae56..8c1a62f39 100644 --- a/tests/plugins/gaw/test_dms.py +++ b/tests/plugins/gaw/test_dms.py @@ -12,7 +12,6 @@ def _make_data(): @pytest.fixture(scope="module") -@lustre_unavail def data_vmrdms_ams_cvo(): return _make_data() From f622f8a267fe714a51647715360fe81c8f1d2f0f Mon Sep 17 00:00:00 2001 From: Alvaro Valdebenito Date: Mon, 29 Jan 2024 16:00:02 +0100 Subject: [PATCH 2/7] return instead of assert in test function --- tests/plugins/icos/test_reader.py | 2 +- tests/plugins/ipcforests/test_reader.py | 2 +- tests/plugins/mep/test_reader.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/plugins/icos/test_reader.py b/tests/plugins/icos/test_reader.py index 438eed239..a129184d4 100644 --- a/tests/plugins/icos/test_reader.py +++ b/tests/plugins/icos/test_reader.py @@ -63,7 +63,7 @@ def test_stations(reader: ReadICOS, station: str): def test_PROVIDES_VARIABLES(reader: ReadICOS): - return set(reader.PROVIDES_VARIABLES) >= VARS_PROVIDED + assert set(reader.PROVIDES_VARIABLES) >= VARS_PROVIDED @station_names diff --git a/tests/plugins/ipcforests/test_reader.py b/tests/plugins/ipcforests/test_reader.py index 8fb680b8f..00169fe39 100644 --- a/tests/plugins/ipcforests/test_reader.py +++ b/tests/plugins/ipcforests/test_reader.py @@ -51,7 +51,7 @@ def test_METADATA(meta_reader: ReadIPCForestMeta): def test_PROVIDES_VARIABLES(reader: ReadIPCForest): - return set(reader.PROVIDES_VARIABLES) >= VARS_PROVIDED + assert set(reader.PROVIDES_VARIABLES) >= VARS_PROVIDED def test_read_file( diff --git a/tests/plugins/mep/test_reader.py b/tests/plugins/mep/test_reader.py index 149000125..d997e969b 100644 --- a/tests/plugins/mep/test_reader.py +++ b/tests/plugins/mep/test_reader.py @@ -63,7 +63,7 @@ def test_stations(reader: ReadMEP, station: str): @lustre_unavail def test_PROVIDES_VARIABLES(reader: ReadMEP): - return set(reader.PROVIDES_VARIABLES) >= VARS_PROVIDED + assert set(reader.PROVIDES_VARIABLES) >= VARS_PROVIDED @lustre_unavail From 1118f0dab692d1cbc194ca188e87186d558d7a74 Mon Sep 17 00:00:00 2001 From: Lewis Blake Date: Fri, 2 Feb 2024 09:46:48 +0100 Subject: [PATCH 3/7] bug_report.md --- .github/ISSUE_TEMPLATE/bug_report.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..ff5181e0d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,28 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: bug +--- + +**Describe the bug** +Please provide a clear and concise description of what the bug is. + - Pyaerocom version: + - Computing platform: + - Configuration file (if applicable): + - Error message (if applicable): + +**To Reproduce** +Steps to reproduce the behavior: +1. +2. +3. + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Additional context** +Add any other context about the problem here. \ No newline at end of file From 275a90e71c7360479e89067e17012d83568fe822 Mon Sep 17 00:00:00 2001 From: Lewis Blake Date: Fri, 2 Feb 2024 09:46:57 +0100 Subject: [PATCH 4/7] config.yml --- .github/ISSUE_TEMPLATE/config.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yml diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..f10fee395 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Pyaerocom documentation + url: https://pyaerocom.readthedocs.io/en/latest/ + about: Documentation page for Pyaerocom \ No newline at end of file From cf19579cfeab19bbfca92b252257f2250145797f Mon Sep 17 00:00:00 2001 From: Lewis Blake Date: Fri, 2 Feb 2024 09:48:44 +0100 Subject: [PATCH 5/7] documentation-md --- .github/ISSUE_TEMPLATE/documentation.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/documentation.md diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 000000000..d5c8043f6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,17 @@ +--- +name: Documentation +about: Suggest changes in the documentation. +title: '' +labels: documentation + +--- + +**Describe a problem and/or suggest an improvement** + - Something incorrect or unclear in the documentation? + - Something should be added to the documentation? + - Something should be removed from the documentation? + - Something should be re-structured in the documentation? + - Suggest a Q&A for the FAQ? + +**Additional context** +Add any other context or screenshots about the feature request here. \ No newline at end of file From bb64be7a67655a919eb4230624a65cd05092fb29 Mon Sep 17 00:00:00 2001 From: Lewis Blake Date: Fri, 2 Feb 2024 09:52:08 +0100 Subject: [PATCH 6/7] feature_request.md --- .github/ISSUE_TEMPLATE/feature_request.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..e54d46f30 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,17 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: enhancement +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. + +**Describe the solution you would like to see** +A clear and concise description of what you want to happen. + - Would you be able to work on this solution yourself? + - How can the Pyaerocom development team assist you? + +**Additional context** +Add any other context or screenshots about the feature request here. \ No newline at end of file From dbb86e7c921b1d90c26710063316f60092e4db43 Mon Sep 17 00:00:00 2001 From: Lewis Blake Date: Fri, 2 Feb 2024 09:53:14 +0100 Subject: [PATCH 7/7] general_issue.md --- .github/ISSUE_TEMPLATE/general_issue.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/general_issue.md diff --git a/.github/ISSUE_TEMPLATE/general_issue.md b/.github/ISSUE_TEMPLATE/general_issue.md new file mode 100644 index 000000000..7a908e008 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/general_issue.md @@ -0,0 +1,7 @@ +--- +name: General issue +about: Used for general issues, not covered by other templates. +title: '' +labels: '' + +--- \ No newline at end of file