File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11python-fedex Examples
22=====================
3+
34This directory contains a number of examples of how to use python-fedex. For
45these examples to work, you must open example_config.py and enter your
56testing account credentials there.
7+
8+ To run all tests from bash, type:
9+
10+ for f in *.py; do python "$f"; done
11+ # Or use the below to only see response errors:
12+ for f in *.py; do python "$f"; done | grep -i error
Original file line number Diff line number Diff line change 1010from fedex .services .location_service import FedexSearchLocationRequest
1111
1212# Common global config object for testing.
13- from common import get_test_config
13+ from common import get_fedex_config
1414
15- CONFIG_OBJ = get_test_config ()
15+ CONFIG_OBJ = get_fedex_config ()
1616
1717
1818@unittest .skipIf (not CONFIG_OBJ .account_number , "No credentials provided." )
You can’t perform that action at this time.
0 commit comments