Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
goodwanghan committed Oct 5, 2023
1 parent 70a5c1a commit 2f9f364
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.8, "3.10"]

steps:
- uses: actions/checkout@v2
Expand All @@ -36,10 +36,12 @@ jobs:
- name: Install dependencies
run: make devenv
- name: Lint
if: matrix.python-version == '3.10'
run: make lint
- name: Test
run: make test
- name: "Upload coverage to Codecov"
if: matrix.python-version == '3.10'
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false
Expand All @@ -49,7 +51,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, "3.10"]
python-version: [3.9]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion fugue_spark/_utils/io.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def save_df(
else:
ldf = df.as_local()
if isinstance(ldf, PandasDataFrame) and hasattr(ldf.native, "attrs"):
ldf.native.attrs = {}
ldf.native.attrs = {} # pragma: no cover
save_df(ldf, uri, format_hint=format_hint, mode=mode, fs=self._fs, **kwargs)

def _get_writer(
Expand Down

0 comments on commit 2f9f364

Please sign in to comment.