File tree 1 file changed +11
-8
lines changed
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 6
6
# Avoiding duplicate branch-pr triggers:
7
7
# https://github.com/travis-ci/travis-ci/issues/1147#issuecomment-160820262
8
8
dist : xenial
9
- branches :
10
- only :
11
- - master
9
+ sudo : false # use container based build
12
10
language : python
11
+
13
12
notifications :
14
13
email : false
15
14
15
+ branches :
16
+ only :
17
+ - master
18
+
16
19
python :
17
20
- " 3.7"
18
21
@@ -26,20 +29,20 @@ before_install:
26
29
fi
27
30
- curl micro.mamba.pm/install.sh | bash
28
31
- export PATH="$HOME/micromamba/bin:$PATH"
29
- - hash -r
30
- - micromamba shell init -s bash -p ~/micromamba
31
32
- micromamba config set always_yes true
32
33
- micromamba config set changeps1 false
33
34
- micromamba config set show_channel_urls true
35
+ - micromamba shell init --shell=bash --prefix=~/micromamba
34
36
35
37
install :
38
+ - . ~/.bashrc
39
+ - which python
40
+ - which micromamba
36
41
- micromamba env create --file ci/environment.yml
37
42
- micromamba activate proplot-dev
38
- - micromamba list
39
- - which micromamba
40
- - which python
41
43
- python setup.py sdist bdist_wheel
42
44
- pip install --user ./dist/*.whl
45
+ - micromamba list
43
46
44
47
script :
45
48
- ci/run-linter.sh
You can’t perform that action at this time.
0 commit comments