1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

Merge pull request #1924 from elezar/fix-module-test-data

Convert testdata to an empty go module
This commit is contained in:
Kubernetes Prow Robot 2024-10-23 09:04:53 +01:00 committed by GitHub
commit b2b5c8b43f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

3
testdata/README.md vendored Normal file
View 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
View 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.