Add some additional incantations to the README.
diff --git a/integrations/tensorflow/.gitignore b/integrations/tensorflow/.gitignore
index 6b7df5f..1b44aae 100644
--- a/integrations/tensorflow/.gitignore
+++ b/integrations/tensorflow/.gitignore
@@ -1 +1,2 @@
 tf-user.bazelrc
+*.egg-info/
diff --git a/integrations/tensorflow/README.md b/integrations/tensorflow/README.md
index 65abc4a..cfbef0c 100644
--- a/integrations/tensorflow/README.md
+++ b/integrations/tensorflow/README.md
@@ -27,6 +27,10 @@
 Pip install editable (recommend to do this in a virtual environment):
 
 ```
+# All at once:
+pip install -e python_projects/*
+
+# Or one at a time:
 pip install -e python_projects/iree_tflite
 pip install -e python_projects/iree_xla
 pip install -e python_projects/iree_tf
@@ -53,8 +57,17 @@
 Run the test suite with:
 
 ```
-lit -v test/
-```
+pip install lit
 
-Note that you can specify arbitrary sub-directories or individual files/globs
-as needed.
+# Just runs the LLVM AOT tests by default:
+lit -v test/
+
+# Can also run vulkan tests with:
+lit -v -D FEATURES=vulkan test/
+
+# Can disable the default LLVM AOT tests:
+lit -v -D DISABLE_FEATURES=llvmaot -D FEATURES=vulkan test/
+
+# Individual test directories, files or globs can be run individually.
+lit -v $(find test -name '*softplus*')
+```