func (i *InMemoryArtifact) GetContent() io.ReadCloser {
	return common.NewClosableReader(i.Data)
}
func (ta *TestArtifact) GetContent() io.ReadCloser {
	return common.NewClosableReader([]byte{1, 2, 3})
}