Skip to content

Commit 45abe57

Browse files
authored
Merge pull request #1203 from cloudfoundry/go-migration
Complete Go migration: Remove Python infrastructure and add comprehensive test suite
2 parents 0747055 + b251112 commit 45abe57

File tree

242 files changed

+18585
-16114
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

242 files changed

+18585
-16114
lines changed

.gitignore

Lines changed: 51 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ binaries/precise/*
44
!binaries/precise/index*.json
55
binaries/trusty/*
66
!binaries/trusty/index*.json
7-
*.pyc
87
*.swp
9-
/env
108
*_buildpack*.zip
119
/log/
1210
*.DS_Store
@@ -18,5 +16,54 @@ DebugKit
1816
.idea
1917
.vscode/
2018
Dockerfile
21-
lib/PyYAML*
22-
lib/_yaml
19+
20+
# Build artifacts
21+
*.test
22+
.bin/
23+
build/*.zip
24+
25+
# Sensitive files
26+
AGENTS.md
27+
28+
# Test artifacts
29+
test-verify*/
30+
31+
# Go build artifacts
32+
*.exe
33+
*.exe~
34+
*.dll
35+
*.so
36+
*.dylib
37+
/bin/supply-compiled
38+
/bin/detect-compiled
39+
/bin/finalize-compiled
40+
/bin/release-compiled
41+
/bin/start-compiled
42+
/bin/rewrite-compiled
43+
44+
# Test binary and coverage files
45+
*.out
46+
coverage.txt
47+
*.coverprofile
48+
49+
# Temporary files
50+
*.tmp
51+
*.temp
52+
/tmp/
53+
/temp/
54+
55+
# Zip and archive files
56+
*.zip
57+
*.tar
58+
*.tar.gz
59+
*.tgz
60+
*.rar
61+
*.7z
62+
63+
# Test output and fixtures
64+
*_test_output/
65+
test-results/
66+
test-fixtures/tmp/
67+
68+
# Comparison directories
69+
tmp-comparison/

.gitmodules

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)