-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbt-redshift-1.5.1.rb
32 lines (28 loc) · 1.18 KB
/
dbt-redshift-1.5.1.rb
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
# Documentation: https://docs.brew.sh/Formula-Cookbook
# https://rubydoc.brew.sh/Formula
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST!
class DbtRedshift151 < Formula
include Language::Python::Virtualenv
desc ""
homepage ""
url "https://github.com/dbt-labs/dbt-redshift/releases/download/v1.5.1/dbt-redshift-1.5.1.tar.gz"
sha256 "380bc617a4c547fce09f8535e4428e0208fa1cd6a4787ac5de01f206efb6a461"
license ""
depends_on "python"
def install
# ENV.deparallelize # if your formula fails when building in parallel
virtualenv_install_with_resources
end
test do
# `test do` will create, run in and delete a temporary directory.
#
# This test will fail and we won't accept that! For Homebrew/homebrew-core
# this will need to be a test that verifies the functionality of the
# software. Run the test with `brew test dbt-redshift-1.5.1`. Options passed
# to `brew install` such as `--HEAD` also need to be provided to `brew test`.
#
# The installed folder is not in the path, so use the entire path to any
# executables being tested: `system "#{bin}/program", "do", "something"`.
system "false"
end
end