From 0dc5b6d2e6b83dbef8680ae64953a4047a759673 Mon Sep 17 00:00:00 2001 From: SubaruArai Date: Mon, 15 Apr 2024 14:59:42 +0900 Subject: [PATCH 1/2] Fix makefile target test failing due to "cd test" Currently, `make test` fails on test/test_rosdep_sources_list.py, line 501. This is due to the CI system running pytest on the project root, while the makefile adds a cd to the test directory before running pytest. This commit deletes the `cd test` from the makefile. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 321881a9d..717b897c3 100644 --- a/Makefile +++ b/Makefile @@ -27,4 +27,4 @@ testsetup: echo "running rosdep tests" test: testsetup - cd test && pytest + pytest From 0850c60570cea7c305abfde95a35ad601ffaabd4 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Tue, 16 Apr 2024 14:17:39 -0500 Subject: [PATCH 2/2] Update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 717b897c3..141195bd9 100644 --- a/Makefile +++ b/Makefile @@ -27,4 +27,4 @@ testsetup: echo "running rosdep tests" test: testsetup - pytest + pytest test