From d5401ea2c86eb5065bd2e30cfe86f85efb2df5c5 Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Fri, 7 Jul 2023 13:20:04 +0200
Subject: [PATCH] unit_tests:3.12: Display dependencies tree, and allow to fail

allow_failure
https://docs.gitlab.com/ee/ci/yaml/#allow_failure

To understand from which dependency is https://pypi.org/project/rpds-py/
coming from
---
 .gitlab-ci.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index aa350c2d..9a9e869b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -131,6 +131,11 @@ unit_tests:3.12:
   extends: .tests
   variables:
     PYTHON_VERSION: "3.12"
+  script:
+    - poetry install
+    - poetry run pytest tests/unit
+    - poetry show --tree
+  allow_failure: true
 
 .image:
   stage: package
-- 
GitLab