Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1bdeb87
Move module definitions to separate file.
JoshRosen Jun 22, 2015
311c6a9
Move shell utility functions to own module.
JoshRosen Jun 22, 2015
32660fc
Initial cut at Python test runner refactoring
JoshRosen Jun 23, 2015
dcc9c09
Fix time division
JoshRosen Jun 23, 2015
4c97136
PYTHONPATH fixes
JoshRosen Jun 23, 2015
04015b9
First attempt at getting PySpark Kafka test to work in new runner script
JoshRosen Jun 24, 2015
aec0b8f
Actually get the Kafka stuff to run properly
JoshRosen Jun 24, 2015
def2d8a
Two minor fixes
JoshRosen Jun 24, 2015
d6a77d3
Fix the tests of dev/run-tests
JoshRosen Jun 24, 2015
caeb040
Fixes to PySpark test module definitions
JoshRosen Jun 24, 2015
b2ab027
Add command-line options for running individual suites in python/run-…
JoshRosen Jun 24, 2015
2efd594
Update dev/run-tests to use new Python test runner flags
JoshRosen Jun 24, 2015
fff4d09
Add dev/sparktestsupport to pep8 checks
JoshRosen Jun 24, 2015
f542ac5
Fix lint check for Python 3
JoshRosen Jun 24, 2015
8f3244c
Use universal_newlines to fix dev/run-tests doctest failures on Pytho…
JoshRosen Jun 25, 2015
4f8902c
Python lint fixes.
JoshRosen Jun 25, 2015
d33e525
Merge remote-tracking branch 'origin/master' into run-tests-python-mo…
JoshRosen Jun 25, 2015
9c80469
Fix passing of PYSPARK_PYTHON
JoshRosen Jun 25, 2015
f53db55
Remove python2 flag, since the test runner script also works fine und…
JoshRosen Jun 26, 2015
3b852ae
Fall back to PYSPARK_PYTHON when sys.executable is None (fixes a test)
JoshRosen Jun 26, 2015
568a3fd
Fix hashbang
JoshRosen Jun 26, 2015
c364ccf
Use which() to convert PYSPARK_PYTHON to an absolute path before shel…
JoshRosen Jun 26, 2015
27a389f
Skip MLLib tests for PyPy
JoshRosen Jun 26, 2015
37aff00
Python 3 fix
JoshRosen Jun 26, 2015
8f65ed0
Fix handling of module in python/run-tests
JoshRosen Jun 26, 2015
34c98d2
Fix universal_newlines for Python 3
JoshRosen Jun 27, 2015
8233d61
Add python/run-tests.py to Python lint checks
JoshRosen Jun 27, 2015
f578d6d
Fix print for Python 2.x
JoshRosen Jun 27, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dev/lint-python
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@

SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
SPARK_ROOT_DIR="$(dirname "$SCRIPT_DIR")"
PATHS_TO_CHECK="./python/pyspark/ ./ec2/spark_ec2.py ./examples/src/main/python/"
PATHS_TO_CHECK="./python/pyspark/ ./ec2/spark_ec2.py ./examples/src/main/python/ ./dev/sparktestsupport"
PATHS_TO_CHECK="$PATHS_TO_CHECK ./dev/run-tests.py ./python/run-tests.py"
PYTHON_LINT_REPORT_PATH="$SPARK_ROOT_DIR/dev/python-lint-report.txt"

cd "$SPARK_ROOT_DIR"
Expand Down
Loading