File tree 5 files changed +57
-1
lines changed
5 files changed +57
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Format: //devtools/kokoro/config/proto/build.proto
2
+
3
+ # Run unit tests for LangChain on Python 3.10
4
+ env_vars: {
5
+ key: " NOX_SESSION"
6
+ value: " unit_langchain-3.10"
7
+ }
8
+
9
+ # Run unit tests in parallel, splitting up by file
10
+ env_vars: {
11
+ key: " PYTEST_ADDOPTS"
12
+ value: " -n=auto --dist=loadscope"
13
+ }
Original file line number Diff line number Diff line change
1
+ # Format: //devtools/kokoro/config/proto/build.proto
2
+
3
+ # Run unit tests for LangChain on Python 3.11
4
+ env_vars: {
5
+ key: " NOX_SESSION"
6
+ value: " unit_langchain-3.11"
7
+ }
8
+
9
+ # Run unit tests in parallel, splitting up by file
10
+ env_vars: {
11
+ key: " PYTEST_ADDOPTS"
12
+ value: " -n=auto --dist=loadscope"
13
+ }
Original file line number Diff line number Diff line change
1
+ # Format: //devtools/kokoro/config/proto/build.proto
2
+
3
+ # Run unit tests for LangChain on Python 3.8
4
+ env_vars: {
5
+ key: " NOX_SESSION"
6
+ value: " unit_langchain-3.8"
7
+ }
8
+
9
+ # Run unit tests in parallel, splitting up by file
10
+ env_vars: {
11
+ key: " PYTEST_ADDOPTS"
12
+ value: " -n=auto --dist=loadscope"
13
+ }
Original file line number Diff line number Diff line change
1
+ # Format: //devtools/kokoro/config/proto/build.proto
2
+
3
+ # Run unit tests for LangChain on Python 3.9
4
+ env_vars: {
5
+ key: " NOX_SESSION"
6
+ value: " unit_langchain-3.9"
7
+ }
8
+
9
+ # Run unit tests in parallel, splitting up by file
10
+ env_vars: {
11
+ key: " PYTEST_ADDOPTS"
12
+ value: " -n=auto --dist=loadscope"
13
+ }
Original file line number Diff line number Diff line change 156
156
"langchain-google-vertexai < 0.2" ,
157
157
]
158
158
159
+ langchain_testing_extra_require = langchain_extra_require + [
160
+ "pytest-xdist" ,
161
+ ]
162
+
159
163
full_extra_require = list (
160
164
set (
161
165
tensorboard_extra_require
260
264
"reasoningengine" : reasoning_engine_extra_require ,
261
265
"rapid_evaluation" : rapid_evaluation_extra_require ,
262
266
"langchain" : langchain_extra_require ,
263
- "langchain_testing" : langchain_extra_require ,
267
+ "langchain_testing" : langchain_testing_extra_require ,
264
268
},
265
269
python_requires = ">=3.8" ,
266
270
classifiers = [
You can’t perform that action at this time.
0 commit comments