forked from appsembler/figures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
53 lines (48 loc) · 1.96 KB
/
.travis.yml
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
# Disabled pytest coverage to troubleshoot Python 3 support
language: python
matrix:
include:
- python: 2.7
env: TOXENV=py27-ginkgo
- python: 2.7
env: TOXENV=py27-hawthorn
- python: 2.7
env: TOXENV=py27-hawthorn_multisite
- python: 2.7
env: TOXENV=lint
- python: 2.7
env: TOXENV=edx_lint_check
- python: 3.5
env: TOXENV=py35-juniper
- python: 3.8
env: TOXENV=py38-juniper
node_js:
- "node"
# command to install dependencies
install:
- pip install flake8 tox
# Remarking out codecov and leaving here as a reference until we decide what
# we are going to do moving forward with running coverage tests in the GitHub
# repo
# - pip install -r devsite/requirements/hawthorn_community.txt
# - pip install pytest-cov flake8 tox
- cd frontend && yarn && cd ..
# command to run tests
script:
- cd frontend && yarn && cd ..
- flake8 figures
# Remarking out codecov and leaving here as a reference until we decide what
# we are going to do moving forward with running coverage tests in the GitHub
# repo
# - py.test --cov=./
# - bash <(curl -s https://codecov.io/bash)
- tox
deploy:
provider: pypi
user: "appsembler"
password:
secure: "pWuvP9KMp1CZsxftXFDfJlL2FzhrFWrfyVndHwo15M+zXOCLx73mFfClekkg3clRyMNV4Wit6536kk3BPBqvgVcRb+o0gj48i0x2/9Py99RNxeJXUgSDCs9hUkNoiGDPEIRsXCiaAx+JLxuoeyHUxCA8Heh6E/7/83BJLL47FgzOdW9hIihB/wTEHjp7eVZNItoLoA58yRA8DZNy2sFE57cDp4bubL3KNTqFlZIY1b6W6CErfCh1fOc2N/c9/0mV2mo0K2rJLw+0sw/qqD3git1wSfu14vbqVrUY5Yp9aGALdIeWCM7Ll2sqPpUd0zVHqNWRubrTtYIcb8LsyNDlRVvvy6CyDXj/yeudOWUrg3XshtOO90k7yxnA5eFm1IFp4FpszZfIyzmwoXqyUT8OSQPnUanieOH28Enxq5VzIOOKJn3qLX6ViWnBssK162cUMxRbIBeImiWhm9E7tWo5nPaJ9W/n+GZwzU0acOa0oYv7k+K+2i26KdqJ056G5ToN1u8JJ0V21TnkGa9IGki9A6F0zmVXdNoTHOMkhqztNBiTIjejrZZmvP+08uY7XnJDMNUm+IO/WjlN1eaHE98jMj/zMaa35yEGEujs5FKiwG7elGK13bL57Cia2qBzsYw4cxq6O5M8XxTEmNF6RloZn9PXg8xFRaD6PNTxUs9UIfc="
on:
tags: true
distributions: "sdist bdist_wheel"
skip_existing: true