Skip to content

Commit

Permalink
Create test_unit.sh (#162)
Browse files Browse the repository at this point in the history
Co-authored-by: Ben Frederickson <[email protected]>
Co-authored-by: Marc Romeyn <[email protected]>
  • Loading branch information
3 people authored Feb 2, 2022
1 parent 1ebae3d commit 5bda79e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ci/test_unit.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

# Get latest models version
cd /models/
git pull origin main

container=$1

## Tensorflow container
if [ "$container" == "merlin-tensorflow-training" ]; then
make tests-tf
# Pytorch container
elif [ "$container" == "merlin-pytorch-training" ]; then
make tests-torch
# Inference container
elif [ "$container" == "merlin-inference" ]; then
make tests-tf make tests-torch
fi

0 comments on commit 5bda79e

Please sign in to comment.