Context
The Go Driver is moving most of it's integration testing logic to the internal package, which will break the master version of drivers-atlast-testing [here](https://github.com/mongodb-labs/drivers-atlas-testing/blob/master/integrations/go/install-driver.sh).
Since mtest is being internalized, the logic in workload_executor_test.go will need to be moved to the internal/test akin to build-oss-fuzz-corpus.
Definition of done
Update script to use v2 where the bash file looks something like this:
#!/bin/bash
set -ex
echo "INSTALLING DRIVER"
# 1. Clone master branch of Driver
# 2. export PATH=$GOROOT/bin:$PATH
# 3. go run {PATH}/internal/test/workloadexec/main.go
Update the v1 to pull from v1 instead of master, here .
- has to be done after
-
GODRIVER-2724 Move internal-only packages to "internal/" directories
- Closed