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
|
name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.6, 3.7, 3.8, pypy3]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies (apt)
run: |
sudo apt install subunit quilt
if: "matrix.os == 'ubuntu-latest'"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U pip setuptools
pip install -U pip coverage codecov flake8 testtools paramiko fastimport configobj cython testscenarios six docutils python-subunit $TEST_REQUIRE sphinx sphinx_epytext launchpadlib patiencediff git+https://github.com/dulwich/dulwich
- name: Build docs
run: |
make docs PYTHON=python
- name: Build extensions
run: |
make extensions PYTHON=python
if: "matrix.python-version != 'pypy3'"
- name: Test suite run
run: |
python -Werror -Wignore::ImportWarning -Wignore::PendingDeprecationWarning -Wignore::DeprecationWarning -Wignore::ResourceWarning -Wignore::UserWarning ./brz selftest --parallel=fork
if: "matrix.os == 'ubuntu-latest'"
env:
PYTHONHASHSEED: random
BRZ_PLUGIN_PATH: -site:-user
- name: Test suite run
run: |
python -Werror -Wignore::ImportWarning -Wignore::PendingDeprecationWarning -Wignore::DeprecationWarning -Wignore::ResourceWarning -Wignore::UserWarning ./brz selftest
if: "matrix.os != 'ubuntu-latest'"
env:
PYTHONHASHSEED: random
BRZ_PLUGIN_PATH: -site:-user
|