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
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: '2.1'
orbs:
python: circleci/[email protected]
jobs:
build:
executor: python/default
steps:
- checkout
- python/install-packages:
pkg-manager: pip
- python/install-packages:
pip-dependency-file: requirements.txt
pkg-manager: pip
- python/install-packages:
args: pytest
pkg-manager: pip
pypi-cache: false
- run:
command: |
pytest --version
name: Test
workflows:
main:
jobs:
- build

3 changes: 2 additions & 1 deletion data/jokes.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
"What did the hot-dog say when he needed to use the bathroom?\nMust-Turd",
"What kind of bagel can fly?\nA Plain Bagel.",
"Where do animals go when their tails fall off?\nA retail store ;)",
"What was Forrest Gump's password?\n1Forrest1."
"What was Forrest Gump's password?\n1Forrest1.",
"Did you hear about the mathematician who's afraid of negative numbers?\nHe'll stop at nothing to avoid them."
]
}