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
# Checkout the code as the first step. This is a dedicated CircleCI step.
26
29
# The python orb's install-packages step will install the dependencies from a Pipfile via Pipenv by default.
27
30
# Here we're making sure we use just use the system-wide pip. By default it uses the project root's requirements.txt.
@@ -31,15 +34,12 @@ jobs:
31
34
- checkout
32
35
- python/install-packages:
33
36
pkg-manager: pip
34
-
# app-dir: ~/project/package-directory/ # If you're requirements.txt isn't in the root directory.
35
-
# 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.
36
37
- run:
37
38
name: Install Udapi
38
39
command: pip install ".[test]"
39
40
- run: mkdir -p test-results
40
41
- run:
41
42
name: Run pytest tests
42
-
# This assumes pytest is installed via the install-package step above
0 commit comments