Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/examples/using-test-job.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
description: |
An example of running a pipenv based project with pytest. And then using twine to publish to pypi.
The project using these args would have pytest as a dev dependecy in its Pipfile.
The project using these args would have pytest as a dev dependency in its Pipfile.
The CircleCI project settings would have the environment variables for twine auth.
usage:
version: 2.1
orbs:
python: circleci/python@3.0.0
python: circleci/python@3.3.0
workflows:
main:
jobs:
Expand All @@ -17,7 +17,9 @@ usage:

jobs:
publish:
executor: python/default
executor:
name: python/default
tag: "3.14"
steps:
- checkout
- python/dist
Expand Down
6 changes: 4 additions & 2 deletions src/examples/work-with-pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ description: |
usage:
version: 2.1
orbs:
python: circleci/python@3.0.0
python: circleci/python@3.3.0
workflows:
main:
jobs:
- build
jobs:
build:
executor: python/default
executor:
name: python/default
tag: "3.14"
steps:
- checkout
# Install requirements.txt
Expand Down
6 changes: 4 additions & 2 deletions src/examples/work-with-pipenv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ description: |
usage:
version: 2.1
orbs:
python: circleci/python@3.0.0
python: circleci/python@3.3.0
workflows:
main:
jobs:
- build
jobs:
build:
executor: python/default
executor:
name: python/default
tag: "3.14"
steps:
- checkout
- python/install-packages:
Expand Down
6 changes: 4 additions & 2 deletions src/examples/work-with-poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ description: |
usage:
version: 2.1
orbs:
python: circleci/python@3.0.0
python: circleci/python@3.3.0
workflows:
main:
jobs:
- build
jobs:
build:
executor: python/default
executor:
name: python/default
tag: "3.14"
steps:
- checkout
- python/install-packages:
Expand Down
6 changes: 4 additions & 2 deletions src/examples/work-with-uv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ description: |
usage:
version: 2.1
orbs:
python: circleci/python@3.0.0
python: circleci/python@3.3.0
workflows:
main:
jobs:
- build
jobs:
build:
executor: python/default
executor:
name: python/default
tag: "3.14"
steps:
- checkout
- python/install-packages:
Expand Down