Mercurial > repos > ethevenot > univariate
comparison Makefile @ 4:3017385625f6 draft
planemo upload for repository https://github.com/workflow4metabolomics/univariate.git commit a81d4cc1df719dcc66def660927abda74972afaa
author | ethevenot |
---|---|
date | Thu, 11 Jan 2018 10:21:17 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
3:140290de7986 | 4:3017385625f6 |
---|---|
1 all: | |
2 | |
3 test: | |
4 test/test-univ | |
5 | |
6 planemo-venv/bin/planemo: planemo-venv | |
7 . planemo-venv/bin/activate && pip install --upgrade pip setuptools | |
8 . planemo-venv/bin/activate && pip install planemo | |
9 | |
10 planemo-venv: | |
11 virtualenv planemo-venv | |
12 | |
13 planemolint: planemo-venv/bin/planemo | |
14 . planemo-venv/bin/activate && planemo lint | |
15 | |
16 planemotest: planemo-venv/bin/planemo | |
17 . planemo-venv/bin/activate && planemo test --conda_dependency_resolution --galaxy_branch release_17.05 | |
18 | |
19 clean: | |
20 $(RM) -r $(HOME)/.planemo | |
21 $(RM) -r planemo-venv | |
22 | |
23 .PHONY: all clean test planemolint planemotest |