You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# For a detailed guide to building and testing with Python, read the docs:
5
+
# https://circleci.com/docs/language-python/ for more details
6
+
version: 2.1
7
+
8
+
# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects.
9
+
# See: https://circleci.com/docs/orb-intro/
10
+
orbs:
11
+
# See the Python orb documentation here: https://circleci.com/developer/orbs/orb/circleci/python
# app-dir: ~/project/package-directory/ # If your requirements.txt isn't in the root directory.
33
+
# pip-dependency-file: test-requirements.txt # if you have a different name for your requirements file, maybe one that combines your runtime and test requirements.
34
+
- run:
35
+
name: Run tests
36
+
# This assumes pytest is installed via the install-package step above
0 commit comments