Skip to content

Commit

Permalink
Make numpy a week dependency for the pytest plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
mdellweg committed Nov 20, 2024
1 parent c668fb1 commit a946077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pulp_ansible/pytest_plugin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import uuid
import pytest
import numpy as np
import subprocess
import time
import yaml
Expand Down Expand Up @@ -210,6 +209,7 @@ def _ansible_dir_factory(server):
@pytest.fixture(scope="session")
def random_image_factory(tmp_path_factory):
"""Factory to produce a random 100x100 image."""
import numpy as np
from PIL import Image

def _random_image():
Expand Down

0 comments on commit a946077

Please sign in to comment.