mirror of
https://github.com/facebookresearch/ReAgent.git
synced 2026-05-17 12:40:39 +00:00
adfa6abe7c
Summary: Pull Request resolved: https://github.com/facebookresearch/ReAgent/pull/174 Reviewed By: czxttkl Differential Revision: D17956417 fbshipit-source-id: 9ba6059fcec6b463aa96b914bded3e8cbec87b27
14 lines
302 B
Bash
Executable File
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
|