Skip to content

Commit 463c642

Browse files
committed
add skip existing to python workflow
1 parent 1ad957b commit 463c642

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/python.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ jobs:
2929
with:
3030
user: __token__
3131
password: ${{ secrets.UPATH_GIT_REPO }}
32-
verbose: true
32+
verbose: true
33+
skip_existing: true

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def smoke(session):
1818
session.run(*"pytest --skiphdfs upath".split())
1919

2020

21-
@nox.session(python=False)
21+
@nox.session(python=['3.7', '3.8'])
2222
def build(session):
2323
session.install("flit")
2424
session.run(*"flit build".split())

0 commit comments

Comments
 (0)