From c73f9298887ab76ab2ab6827ecf83346f856619d Mon Sep 17 00:00:00 2001 From: Matthieu Guimard <matthieu.guimard@univ-grenoble-alpes.fr> Date: Wed, 13 Nov 2024 11:26:14 +0100 Subject: [PATCH 1/5] first commit in the gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 66908cb5..553ac3da 100644 --- a/.gitignore +++ b/.gitignore @@ -47,6 +47,7 @@ ENV/ env.bak/ venv.bak/ .gitconfig +*/venv/ # vuejs / npm / yarn package-lock.json -- GitLab From 61f1746a360f621d96440ca6243951c9b41200a0 Mon Sep 17 00:00:00 2001 From: Matthieu Guimard <matthieu.guimard@univ-grenoble-alpes.fr> Date: Wed, 13 Nov 2024 14:28:29 +0100 Subject: [PATCH 2/5] second modif in gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 553ac3da..6e8d3e7f 100644 --- a/.gitignore +++ b/.gitignore @@ -48,6 +48,7 @@ env.bak/ venv.bak/ .gitconfig */venv/ +*/venv*/ # vuejs / npm / yarn package-lock.json -- GitLab From 34a9370d57641307dc0c38bfbb051247acee1520 Mon Sep 17 00:00:00 2001 From: Matthieu Guimard <matthieu.guimard@univ-grenoble-alpes.fr> Date: Wed, 13 Nov 2024 14:31:35 +0100 Subject: [PATCH 3/5] found solution for gitignore --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6e8d3e7f..fe54fa06 100644 --- a/.gitignore +++ b/.gitignore @@ -47,8 +47,7 @@ ENV/ env.bak/ venv.bak/ .gitconfig -*/venv/ -*/venv*/ +trammel_venv/ # vuejs / npm / yarn package-lock.json -- GitLab From 43e879247151783f200bb717809aad941dfbd6a0 Mon Sep 17 00:00:00 2001 From: Matthieu Guimard <matthieu.guimard@univ-grenoble-alpes.fr> Date: Wed, 13 Nov 2024 14:42:55 +0100 Subject: [PATCH 4/5] new try for first mr --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index fe54fa06..2ac78c15 100644 --- a/.gitignore +++ b/.gitignore @@ -48,6 +48,7 @@ env.bak/ venv.bak/ .gitconfig trammel_venv/ +# # vuejs / npm / yarn package-lock.json -- GitLab From 0d1ac63ce6945e5ef113f99de821d07afd719a2d Mon Sep 17 00:00:00 2001 From: Matthieu Guimard <matthieu.guimard@univ-grenoble-alpes.fr> Date: Wed, 13 Nov 2024 15:11:11 +0100 Subject: [PATCH 5/5] test for modification on tests.py file --- src/ptf_tools/tests/tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ptf_tools/tests/tests.py b/src/ptf_tools/tests/tests.py index 73685db6..cd390931 100644 --- a/src/ptf_tools/tests/tests.py +++ b/src/ptf_tools/tests/tests.py @@ -799,6 +799,8 @@ class ToolsTestCase(TestCase): self.assertNotEqual(article.body_html, "") self.assertEqual(article.do_not_publish, True) + def test_11_get_special_issue_edit_api(self): + print("test_11_get_special_issue_edit_api") pass # def test_00_check_schema(self): -- GitLab