Skip to content

Commit

Permalink
Include test data files in workspace build
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Oct 22, 2024
1 parent 598b02c commit 7410099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/modules/workspace.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let
then pkgs.openssl # pkgsStatic is considered a cross build and this is not yet supported
else pkgs.pkgsStatic.openssl;

nonCargoBuildFiles = path: _type: builtins.match ".*(conductor-config.yaml|conductor-config-ci.yaml)$" path != null;
nonCargoBuildFiles = path: _type: builtins.match ".*(conductor-config.yaml|conductor-config-ci.yaml|summariser/test_data/.*.json)$" path != null;
includeFilesFilter = path: type:
(craneLib.filterCargoSources path type) || (nonCargoBuildFiles path type);

Expand Down

0 comments on commit 7410099

Please sign in to comment.