1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/integration/targets/lookup_lmdb_kv/dependencies.yml
patchback[bot] 1dfd6e395c
Fix lmdb lookup tests (#842) (#907)
* Set LMDB_PURE to prevent lmdb install trying to patch a system library.

* Fix name.

(cherry picked from commit b36f77515c)

Co-authored-by: Felix Fontein <felix@fontein.de>
2020-09-17 15:49:41 +00:00

12 lines
263 B
YAML

---
- hosts: localhost
tasks:
- name: Install LMDB Python package
pip:
name: lmdb
environment:
LMDB_PURE: "1"
- name: Setup test data
script: test_db.py
args:
executable: "{{ ansible_python.executable }}"