Files
ReAgent/scripts/ci/run_python_unittest.sh
T
Kittipat Virochsiri adfa6abe7c Parallelize CI tests
Summary: Pull Request resolved: https://github.com/facebookresearch/ReAgent/pull/174

Reviewed By: czxttkl

Differential Revision: D17956417

fbshipit-source-id: 9ba6059fcec6b463aa96b914bded3e8cbec87b27
2019-10-17 12:24:19 -07:00

14 lines
302 B
Bash
Executable File

#!/bin/bash
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
# Builds ReAgent and runs basic tests.
set -ex
export PATH=${HOME}/miniconda/bin:$PATH
pip uninstall -y reagent
# Installing from current directory, any update will be reflected system-wide
pip install -e .
pytest