...

Text file src/go.mongodb.org/mongo-driver/etc/docker_entry.sh

Documentation: go.mongodb.org/mongo-driver/etc

     1#!/usr/bin/env bash
     2#
     3# Entry point for Dockerfile for running a go test.
     4#
     5set -eux
     6
     7# Prep files.
     8cd /src
     9rm -f test.suite
    10cp -r $HOME/install ./install
    11
    12export PATH="$MONGODB_BINARIES:$PATH"
    13
    14# Run the test.
    15bash ./.evergreen/run-tests.sh

View as plain text