From d794db695061daa4d9626b2835689e55df2de370 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Wed, 19 Jun 2024 10:04:48 +0200 Subject: [PATCH] fixtures.yml: Pull dependencies from git This is the current best practice. In unit tests the .fixtures.yml will be used and we're able to detect breaking changes in dependencies before they are released. In acceptance tests the latest forge releases based on metadata.json will be used. --- .fixtures.yml | 26 +++++++++----------------- 1 file changed, 9 insertions(+), 17 deletions(-) diff --git a/.fixtures.yml b/.fixtures.yml index 933607e4e..ab07646df 100644 --- a/.fixtures.yml +++ b/.fixtures.yml @@ -1,18 +1,10 @@ +--- fixtures: - forge_modules: - icinga: - repo: icinga/icinga - stdlib: - repo: puppetlabs/stdlib - concat: - repo: puppetlabs/concat - apt: - repo: puppetlabs/apt - chocolatey: - repo: puppetlabs/chocolatey - zypprepo: - repo: puppet/zypprepo - yumrepo_core: - repo: puppetlabs-yumrepo_core - puppet_version: ">= 6.0.0" - + repositories: + icinga: https://github.com/voxpupuli/puppet-icinga + stdlib: https://github.com/puppetlabs/puppetlabs-stdlib + concat: https://github.com/puppetlabs/puppetlabs-concat + apt: https://github.com/puppetlabs/puppetlabs-apt + chocolatey: https://github.com/puppetlabs/puppetlabs-chocolatey + zypprepo: https://github.com/voxpupuli/puppet-zypprepo + yumrepo_core: https://github.com/puppetlabs/puppetlabs-yumrepo_core