From e78596424c44d90e20e449244d51755ba4185e78 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 20:54:12 +0000 Subject: [PATCH 1/3] Initial plan From 4b520811da23235da31bea134355e38948c88b4a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 20:55:52 +0000 Subject: [PATCH 2/3] Remove outdated tests folder reference from CONTRIBUTING.md Co-authored-by: hzhangxyz <11623447+hzhangxyz@users.noreply.github.com> --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1ea49c9..574b2e5 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -12,7 +12,7 @@ If you have any questions, please use the GitHub discussions. ## Code structure The code structure of qmp is following the standard Python package structure. -We organize the package code into the folder named `qmp`, and the tests into the folder named `tests`. +We organize the package code into the folder named `qmp`. The file `pyproject.toml` is used to define the package metadata. There are also some other files such as `.clang-format`, `.pre-commit-config.yaml` used to format and lint the code. From eae9f13f371473fc4c3d04fb9b93e44c326c3feb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 18 Dec 2025 20:58:42 +0000 Subject: [PATCH 3/3] Remove tests reference from contribution guidelines Co-authored-by: hzhangxyz <11623447+hzhangxyz@users.noreply.github.com> --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 574b2e5..1d9e28c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -26,7 +26,7 @@ Please make sure that your code is properly formatted, linted and typed when you In Python code conventions, use double quotes (") for string literals and single quotes (') for character literals. The comments in the code are expected to be enough for other developers to understand your code. Please add docstrings to the code in NumPy style. -If necessary, please update documentations and add tests for your changes. +If necessary, please update documentations for your changes. Any warning should be fixed when submitting a pull request. At last, please check carefully on the correctness and the robustness of the code when submitting a pull request.