From 4c648a165681c9dd107a3173ea4e7dea17e2cad0 Mon Sep 17 00:00:00 2001 From: Christian Schulze-Wiehenbrauk Date: Thu, 31 Oct 2019 14:44:43 +0100 Subject: [PATCH] Add readme for v3 dir --- v3/README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 v3/README.md diff --git a/v3/README.md b/v3/README.md new file mode 100644 index 00000000..921556f0 --- /dev/null +++ b/v3/README.md @@ -0,0 +1,18 @@ +This directory mirrors the source code via symlinks. +This makes it possible to vendor v3.x releases of +csi-test with `dep` versions that do not support +semantic imports. Support for that is currently +[pending in dep](https://github.com/golang/dep/pull/1963). + +If users of dep have enabled pruning, they must disable if +for csi-test in their Gopk.toml, like this: + +```toml +[prune] + go-tests = true + unused-packages = true + + [[prune.project]] + name = "github.com/kubernetes-csi/csi-test" + unused-packages = false +```