Skip to content

Commit 543418a

Browse files
committed
Add command to check for numpy not being installed
1 parent 53f75e6 commit 543418a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,10 @@ jobs:
239239
docker:
240240
- image: cimg/python:3.12-browsers
241241
steps:
242+
- run:
243+
name: Check that numpy is not installed
244+
command: |
245+
pip list | grep numpy > /dev/null 2>&1 && { exit 1 } || { exit 0 }
242246
- test_optional:
243247
py: "312_no_numpy"
244248

0 commit comments

Comments
 (0)