Skip to content

Commit

Permalink
fix working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
lynnro314 committed Jul 12, 2023
1 parent 8d39778 commit 45d83aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ jobs:
# LAKEFS_BLOCKSTORE_S3_CREDENTIALS_SECRET_ACCESS_KEY: ${{ secrets.ESTI_AWS_SECRET_ACCESS_KEY }}

- name: Use lakeFS with S3 gateway
working-directory: test/
# working-directory: test/
run: |
python ./run-test.py \
python ./test/run-test.py \
--storage_namespace s3://iceberg-lakefs-testing/${{ github.run_number }}-s3-gateway/${{ steps.unique.outputs.value }} \
--repository gateway-test \
Expand Down
2 changes: 1 addition & 1 deletion test/run-test.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def main():

spark = SparkSession.builder.config(conf=spark_config).getOrCreate()

df = spark.read.option("inferSchema","true").option("multiline","true").csv("./data-sets/film_permits.csv")
df = spark.read.option("inferSchema","true").option("multiline","true").csv("./test/data-sets/film_permits.csv")
df.write.saveAsTable("lakefs.main.nyc.permits")


Expand Down

0 comments on commit 45d83aa

Please sign in to comment.