File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ pip install tensorflow-transform
4242To build from source follow the following steps:
4343Create a virtual environment by running the commands
4444
45- ```
45+ ``` bash
4646python3 -m venv < virtualenv_name>
4747source < virtualenv_name> /bin/activate
4848pip3 install setuptools wheel
@@ -53,13 +53,13 @@ pip3 install .
5353
5454If you are doing development on the TFT repo, replace
5555
56- ```
56+ ``` bash
5757pip3 install .
5858```
5959
6060with
6161
62- ```
62+ ``` bash
6363pip3 install -e .
6464```
6565
@@ -78,6 +78,14 @@ pip install --extra-index-url https://pypi-nightly.tensorflow.org/simple tensorf
7878This will install the nightly packages for the major dependencies of TFT such
7979as TensorFlow Metadata (TFMD), TFX Basic Shared Libraries (TFX-BSL).
8080
81+ ### Running Tests
82+
83+ To run TFT tests, run the following command from the root of the repository:
84+
85+ ``` bash
86+ pytest
87+ ```
88+
8189### Notable Dependencies
8290
8391TensorFlow is required.
You can’t perform that action at this time.
0 commit comments