1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
## Debian CI:
debian/.gitlab-ci.yml
# Build directory
_build/
# We don't need lint tasks
lib/tasks/haml-lint.rake
lib/tasks/rubocop.rake
lib/tasks/scss-lint.rake
debian/upstream-file-list.new
debian/upstream-config-file-list.new
#We have redis-client 0.22.2
config/initializers/redis_client_patch.rb
# We have rails > 6.0.2
config/initializers/active_record_fix_insert_all.rb
# We have puma 5.2.2
config/initializers/puma_client_tempfile_patch.rb
# We have sprockets 4
config/initializers/sprockets_patch.rb
# Remove patches for devDeependencies
# for yarn-plugin-apt integration
patches/@vue+compat+3.2.47.patch
patches/@vue+compiler-core+3.2.47.dev.patch
patches/@vue+compiler-sfc+3.2.47.patch
patches/@vue/test-utils-vue3
patches/@vue/vue3-jest
patches/vue-loader-vue3
# For workhorse
## Failing tests that require test data from the Internet:
workhorse/main_test.go
workhorse/cmd/gitlab-workhorse/*_test.go
workhorse/authorization_test.go
workhorse/channel_test.go
workhorse/gitaly_integration_test.go
workhorse/gitaly_test.go
workhorse/jobs_test.go
workhorse/sendfile_test.go
workhorse/upload_test.go
workhorse/internal/upload/*_test.go
workhorse/internal/objectstore/*_test.go
workhorse/internal/upload/destination/objectstore/*_test.go
workhorse/internal/redis/*_test.go
## Need definitions from excluded test files
workhorse/cable_test.go
## Need github.com/johannesboyne/gofakes3/backend/s3mem
workhorse/internal/objectstore/s3_object_test.go
workhorse/internal/objectstore/test/s3_stub.go
workhorse/internal/filestore/file_handler_test.go
workhorse/internal/upload/destination/objectstore/test/s3_stub.go
workhorse/internal/upload/destination/objectstore/s3_object_test.go
workhorse/internal/upload/destination/destination_test.go
## Failing tests
workhorse/internal/gitaly/gitaly_test.go
workhorse/internal/gitaly/unmarshal_test.go
# Fails with panic: runtime error: invalid memory address or nil pointer
# dereference
workhorse/internal/goredis/keywatcher_test.go
workhorse/internal/goredis/goredis_test.go
# Failing test
workhorse/internal/secret/secret_test.go
# EOL changes caused by git normalization producing changes in source
# in this file
spec/fixtures/emails/valid_reply_signed_smime.eml
|