forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
85 lines (54 loc) · 2.51 KB
/
Makefile
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
PYTEST_EXE ?= $(shell which py.test)
PYTHON_EXE ?= $(shell sed 's/^\#!//' $(PYTEST_EXE) | head -1 | sed "s|$HOME|~|")
PYTHON_MAJOR_VERSION := $(shell $(PYTHON_EXE) -c "import sys; print(sys.version_info[0])")
TEST_PLATFORM := $(shell $(PYTHON_EXE) -c "import sys; print('win' if sys.platform.startswith('win') else 'unix')")
PYTHONHASHSEED := $(shell python -c "import random as r; print(r.randint(0,4294967296))")
PYTEST_VARS := PYTHONHASHSEED=$(PYTHONHASHSEED) PYTHON_MAJOR_VERSION=$(PYTHON_MAJOR_VERSION) TEST_PLATFORM=$(TEST_PLATFORM)
PYTEST := $(PYTEST_VARS) $(PYTEST_EXE)
ADD_COV := --cov-report xml --cov-report term-missing --cov-append --cov conda
clean:
@find . -name \*.py[cod] -delete
@find . -name __pycache__ -delete
@rm -rf *.egg-info* .cache build
@rm -f .coverage .coverage.* junit.xml tmpfile.rc conda/.version tempfile.rc coverage.xml
@rm -rf auxlib bin conda/progressbar
@rm -rf conda-build conda_build_test_recipe record.txt
clean-all: clean
rm -rf dist env ve
anaconda-submit-test: clean-all
anaconda build submit . --queue conda-team/build_recipes --test-only
anaconda-submit-upload: clean-all
anaconda build submit . --queue conda-team/build_recipes --label stage
# VERSION=0.0.41 make auxlib
auxlib:
git clone https://github.com/kalefranz/auxlib.git --single-branch --branch $(VERSION) \
&& rm -rf conda/_vendor/auxlib \
&& mv auxlib/auxlib conda/_vendor/ \
&& rm -rf auxlib
# VERSION=16.4.1 make boltons
boltons:
git clone https://github.com/mahmoud/boltons.git --single-branch --branch $(VERSION) \
&& rm -rf conda/_vendor/boltons \
&& mv boltons/boltons conda/_vendor/ \
&& rm -rf boltons
# VERSION=0.8.0 make toolz
toolz:
git clone https://github.com/pytoolz/toolz.git --single-branch --branch $(VERSION) \
&& rm -rf conda/_vendor/toolz \
&& mv toolz/toolz conda/_vendor/ \
&& rm -rf toolz
rm -rf conda/_vendor/toolz/curried conda/_vendor/toolz/sandbox conda/_vendor/toolz/tests
pytest-version:
$(PYTEST) --version
conda-version:
$(PYTHON_EXE) utils/setup-testing.py --version
smoketest:
$(PYTEST) tests/test_create.py -k test_create_install_update_remove
unit: clean
$(PYTEST) $(ADD_COV) -m "not integration and not installed"
integration: clean pytest-version
$(PYTEST) $(ADD_COV) -m "integration and not installed"
test-installed:
$(PYTEST) $(ADD_COV) -m "installed" --shell=bash --shell=zsh
.PHONY : clean clean-all anaconda-submit anaconda-submit-upload auxlib boltons toolz \
pytest-version smoketest unit integration test-installed