mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 11:00:03 -03:30
The SWIG_FEATURES environment variable is to get pip install working with M2Crypto==0.22.3. It works without SWIG_FEATURES if we update to M2Crypto >= 0.23.0. Also did some organization, add README.
14 lines
319 B
YAML
14 lines
319 B
YAML
---
|
|
version: '2'
|
|
services:
|
|
unit-tests:
|
|
build:
|
|
context: ../../../
|
|
dockerfile: tools/docker-compose/unit-tests/Dockerfile
|
|
environment:
|
|
SWIG_FEATURES: "-cpperraswarn -includeall -I/usr/include/openssl"
|
|
command: ["make requirements_test test"]
|
|
|
|
volumes:
|
|
- ../../../:/ansible-tower
|