Skip to content

Commit 9770bd1

Browse files
committed
Fix acceptance tests
Previously, acceptance tests were failing during the initial installation of fixtures: > Cloning into 'spec/fixtures/modules/puppet_agent'... > fatal: unable to connect to github.com: > github.com\[0: 140.82.113.4]: errno=Connection timed out This switches to using `https` URLs for the fixtures, which allows acceptance tests to proceed beyond that point.
1 parent dba16ed commit 9770bd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.fixtures.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
fixtures:
22
repositories:
3-
facts: 'git://github.com/puppetlabs/puppetlabs-facts.git'
4-
provision: 'git://github.com/puppetlabs/provision.git'
5-
puppet_agent: 'git://github.com/puppetlabs/puppetlabs-puppet_agent.git'
3+
facts: 'https://github.com/puppetlabs/puppetlabs-facts.git'
4+
provision: 'https://github.com/puppetlabs/provision.git'
5+
puppet_agent: 'https://github.com/puppetlabs/puppetlabs-puppet_agent.git'
66
symlinks: []

0 commit comments

Comments
 (0)