failing test for ansible and molecule

This commit is contained in:
jschaul 2020-08-24 18:37:58 +02:00 committed by adisbladis
parent 10e417df85
commit c849edee3e
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7
5 changed files with 1344 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{ lib, poetry2nix, python3 }:
poetry2nix.mkPoetryApplication {
python = python3;
pyproject = ./pyproject.toml;
poetrylock = ./poetry.lock;
src = lib.cleanSource ./.;
}

1318
tests/ansible-molecule/poetry.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,17 @@
[tool.poetry]
name = "ansible-molecule"
version = "0.1.0"
description = ""
authors = ["Your Name <you@example.com>"]
[tool.poetry.dependencies]
python = "^3.6"
jinja2 = "^2.10.3"
ansible = "~2.7"
molecule = "^2.22"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"

View file

@ -39,6 +39,7 @@ builtins.removeAttrs
dependency-environment = callTest ./dependency-environment { }; dependency-environment = callTest ./dependency-environment { };
editable = callTest ./editable { }; editable = callTest ./editable { };
editable-egg = callTest ./editable-egg { }; editable-egg = callTest ./editable-egg { };
ansible-molecule = callTest ./ansible-molecule { };
# Test building poetry # Test building poetry
inherit poetry; inherit poetry;