diff --git a/tsfpga/examples/simulate.py b/tsfpga/examples/simulate.py index b503848b2d594048d263c32590e2620f4d6c4139..635c48a1888ee47f07e3b7bec36b4d34df8ad19e 100644 --- a/tsfpga/examples/simulate.py +++ b/tsfpga/examples/simulate.py @@ -114,9 +114,6 @@ def find_git_test_filters(args, repo_root, modules, modules_no_sim=None, **setup repo_root=repo_root, reference_branch="origin/master", vunit_proj=simulation_project.vunit_proj, - # We use VUnit preprocessing, so these arguments have to be supplied - vunit_preprocessed_path=args.output_path / "preprocessed", - modules=modules, ).find_subset() test_filters = [] diff --git a/tsfpga/git_simulation_subset.py b/tsfpga/git_simulation_subset.py index b0fe9266773c1c567266873277a390f9ec6e4111..1d3065fe3482c55d3780bc512bfe1f8eaf6b95cd 100644 --- a/tsfpga/git_simulation_subset.py +++ b/tsfpga/git_simulation_subset.py @@ -108,7 +108,7 @@ class GitSimulationSubset: # later commit. Include only files that are currently existing. if b_path.exists(): if b_path.name.endswith(".vhd"): - files.add(b_path) + files.add(b_path.resolve()) self._print_file_list("Found git diff in the following files", files) return files