Skip to content

Commit f3ec72f

Browse files
author
yuzelin
committed
fix
1 parent a705fff commit f3ec72f

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/check-java-bridge-licensing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
- name: Build
4141
run: |
4242
set -o pipefail
43-
cd pypaimon/py4j/paimon-python-java-bridge
43+
cd paimon-python-java-bridge
4444
mvn clean deploy ${{ env.MVN_COMMON_OPTIONS }} -DskipTests \
4545
-DaltDeploymentRepository=validation_repository::default::file:${{ env.MVN_VALIDATION_DIR }} \
4646
| tee ${{ env.MVN_BUILD_OUTPUT_FILE }}
4747
4848
- name: Check licensing
4949
run: |
50-
cd pypaimon/py4j/paimon-python-java-bridge
50+
cd paimon-python-java-bridge
5151
mvn ${{ env.MVN_COMMON_OPTIONS }} exec:java@check-licensing -N \
5252
-Dexec.args="${{ env.MVN_BUILD_OUTPUT_FILE }} $(pwd) ${{ env.MVN_VALIDATION_DIR }}" \
5353
-Dlog4j.configurationFile=file://$(pwd)/tools/ci/log4j.properties

dev/lint-python.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -577,6 +577,9 @@ function tox_check() {
577577
# Ensure the permission of the scripts set correctly
578578
chmod +x $PAIMON_PYTHON_DIR/dev/*
579579

580+
# dummy directory needed bt setup.py
581+
mkdir -p $PAIMON_PYTHON_DIR/deps/jars
582+
580583
if [[ -n "$GITHUB_ACTION" ]]; then
581584
# Run tests in all versions triggered by a Git push (tests aren't so many currently)
582585
$TOX_PATH -vv -c $PAIMON_PYTHON_DIR/tox.ini --recreate 2>&1 | tee -a $LOG_FILE

pypaimon/py4j/tests/test_write_and_read.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ def setUpClass(cls):
3737
('f1', pa.string())
3838
])
3939

40-
4140
def testReadEmptyAppendTable(self):
4241
schema = Schema(self.simple_pa_schema)
4342
self.catalog.create_table('default.empty_append_table', schema, False)

0 commit comments

Comments
 (0)