mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
Convert testdata to an empty go module
This ensures that the testdata folder is not included in the top-level module and prevents issues such as unsupported characters in path names. Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
parent
b9d7fa045d
commit
8ada0b04af
2 changed files with 6 additions and 0 deletions
3
testdata/README.md
vendored
Normal file
3
testdata/README.md
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
Some of the test data in this folder contains colon characters which causes "go get" commands to fail with "invalid char ':'".
|
||||||
|
The empty go.mod file is a workaround to prevent this error. This effectively makes this folder its own go module, so it will be
|
||||||
|
ignored when "go get" is executed.
|
3
testdata/go.mod
vendored
Normal file
3
testdata/go.mod
vendored
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
// This empty go.mod file ensures that the testdata folder is not included
|
||||||
|
// in the top-level module. This prevents issues such as unsupported characters
|
||||||
|
// in path names.
|
Loading…
Reference in a new issue