-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Infra] Separate out delta-spark python tests #3542
[Infra] Separate out delta-spark python tests #3542
Conversation
# Python tests are run only when spark group of projects are being tested. | ||
is_testing_spark_group = args.group is None or args.group == "spark" | ||
# Python tests are skipped when using Scala 2.13 as PySpark doesn't support it. | ||
is_testing_scala_212 = scala_version is None or scala_version.startswith("2.12") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the scala version is part of the GH workflow configuration
9f9adb9
to
0644535
Compare
0644535
to
a0c6ecc
Compare
a0c6ecc
to
2491b13
Compare
Before this PR:
With this PR:
|
Hi, could you also consider this PR? It may help a bit: #2690 |
62a6f00
to
883a2a2
Compare
we also need to split out the same for the spark master isn it? |
883a2a2
to
e28ff7c
Compare
e28ff7c
to
729efbb
Compare
@tdas << we also need to split out the same for the spark master isn it? >> we don't run python tests for spark master at the moment |
Which Delta project/connector is this regarding?
Description
Separate out delta-spark python tests to their own GitHub CI
How was this patch tested?
CI tests
Does this PR introduce any user-facing changes?
No