-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #752 from betatim/fix-preassemble-r-py-combo
[MRG] Call parent preassemble scripts methods
- Loading branch information
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import os | ||
|
||
import pytest | ||
|
||
from repo2docker import buildpacks | ||
|
||
|
||
@pytest.mark.parametrize("binder_dir", ["", ".binder", "binder"]) | ||
def test_combine_preassemble_steps(tmpdir, binder_dir): | ||
tmpdir.chdir() | ||
if binder_dir: | ||
os.mkdir(binder_dir) | ||
|
||
# create two empty files for the build pack to use for pre-assembly | ||
open(os.path.join(binder_dir, "requirements.txt"), "w").close() | ||
open(os.path.join(binder_dir, "install.R"), "w").close() | ||
|
||
# trigger R build pack detection | ||
with open(os.path.join(binder_dir, "runtime.txt"), "w") as f: | ||
f.write("r-2019-01-30") | ||
|
||
bp = buildpacks.RBuildPack() | ||
files = bp.get_preassemble_script_files() | ||
|
||
assert len(files) == 2 | ||
assert os.path.join(binder_dir, "requirements.txt") in files | ||
assert os.path.join(binder_dir, "install.R") in files |