Upload hf_env/lib/python3.14/site-packages/dill/tests/__init__.py with huggingface_hub
Browse files
hf_env/lib/python3.14/site-packages/dill/tests/__init__.py
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python
|
| 2 |
+
#
|
| 3 |
+
# Author: Mike McKerns (mmckerns @caltech and @uqfoundation)
|
| 4 |
+
# Copyright (c) 2018-2025 The Uncertainty Quantification Foundation.
|
| 5 |
+
# License: 3-clause BSD. The full license text is available at:
|
| 6 |
+
# - https://github.com/uqfoundation/dill/blob/master/LICENSE
|
| 7 |
+
"""
|
| 8 |
+
to run this test suite, first build and install `dill`.
|
| 9 |
+
|
| 10 |
+
$ python -m pip install ../..
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
then run the tests with:
|
| 14 |
+
|
| 15 |
+
$ python -m dill.tests
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
or, if `nose` is installed:
|
| 19 |
+
|
| 20 |
+
$ nosetests
|
| 21 |
+
|
| 22 |
+
"""
|