Skip to content

Commit

Permalink
add skip existing to python workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewfulton9 committed Jan 13, 2021
1 parent 1ad957b commit 463c642
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@ jobs:
with:
user: __token__
password: ${{ secrets.UPATH_GIT_REPO }}
verbose: true
verbose: true
skip_existing: true
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def smoke(session):
session.run(*"pytest --skiphdfs upath".split())


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

0 comments on commit 463c642

Please sign in to comment.