From afa74f9eb5ef793d8aff290d09dfee72b0d31108 Mon Sep 17 00:00:00 2001 From: Jonathan Chico Date: Wed, 10 Apr 2024 15:49:18 +0200 Subject: [PATCH] Fixing an issue with the tests due to the move of the source folder --- tests/test_generate_inputs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_generate_inputs.py b/tests/test_generate_inputs.py index b89a6a40..a4740ca6 100644 --- a/tests/test_generate_inputs.py +++ b/tests/test_generate_inputs.py @@ -13,7 +13,7 @@ def validate_input_parameters(parameters: dict): _file = os.path.join( os.path.dirname(os.path.abspath(__file__)), "..", - "aiida_lammps/validation/schemas/lammps_schema.json", + "src/aiida_lammps/validation/schemas/lammps_schema.json", ) validate_against_schema(data=parameters, filename=_file)