mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-06-15 07:00:52 +00:00
18 lines
411 B
Bash
Executable File
18 lines
411 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# run upstream's unit tests with their full etcd fixtures, etc
|
|
|
|
set -eux
|
|
|
|
. debian/tests/setup
|
|
|
|
# FIXME: errors with non-constant format string in call to
|
|
# github.com/aptly-dev/aptly/s3.fatalError
|
|
rm ${APTLY_SRC_DIR}/s3/server_test.go
|
|
rm ${APTLY_SRC_DIR}/s3/public_test.go
|
|
|
|
# upstream's etcd fixture is arch-specific
|
|
rm ${APTLY_SRC_DIR}/database/etcddb/database_test.go
|
|
|
|
make -C $APTLY_SRC_DIR test
|