File: python-package.yml

package info (click to toggle)
python-exchangelib 5.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,364 kB
  • sloc: python: 25,367; sh: 6; makefile: 5
file content (122 lines) | stat: -rw-r--r-- 4,115 bytes parent folder | download
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python package

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  pre_job:
    # Cancels all other running workflow runs. We don't want to have two parallel test
    # suites running against the test server.
    runs-on: ubuntu-latest
    outputs:
      should_skip: ${{ steps.skip_check.outputs.should_skip }}
    steps:
      - id: skip_check
        uses: fkirc/skip-duplicate-actions@master
        with:
          concurrent_skipping: always
          cancel_others: true

  build:
    # Install all requirements, run the test suite, and clean up the server test account.
    runs-on: ubuntu-latest
    needs: pre_job
    strategy:
      matrix:
        python-version: ['3.10', '3.14']
        #include:
        # Allow failure on Python dev - e.g. Cython install regularly fails
        #  - python-version: "3.15-dev"
        #    allowed_failure: true
      max-parallel: 1

    steps:
    - uses: actions/checkout@v4

    - name: Set up Python ${{ matrix.python-version }}
      uses: actions/setup-python@v5
      with:
        python-version: ${{ matrix.python-version }}

    - name: Unencrypt secret file
      env:
          AES_256_CBC_PASS: ${{ secrets.AES_256_CBC_PASS }}
      # Only repo owners have access to the secret. PRs will run only the unit tests
      if: env.AES_256_CBC_PASS != ''
      run: |
        openssl aes-256-cbc -d -md sha256 -in settings.yml.ghenc -out settings.yml -pass env:AES_256_CBC_PASS

    - name: Upgrade pip
      run: |
        python -m pip install --upgrade pip wheel

    - name: Install cutting-edge Cython-based packages on Python dev versions
      continue-on-error: ${{ matrix.allowed_failure || false }}
      if: matrix.python-version == '3.15-dev'
      run: |
        sudo apt-get install libxml2-dev libxslt1-dev
        python -m pip install git+https://github.com/cython/cython.git
        python -m pip install git+https://github.com/lxml/lxml.git
        python -m pip install git+https://github.com/yaml/pyyaml.git
        python -m pip install git+https://github.com/python-cffi/cffi.git

    - name: Install dependencies
      continue-on-error: ${{ matrix.allowed_failure || false }}
      run: |
        python -m pip install .
        python -m pip install -r test-requirements.txt

    - name: Test with coverage
      continue-on-error: ${{ matrix.allowed_failure || false }}
      env:
       GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      run: |
        black --check --diff exchangelib tests scripts
        isort --check --diff exchangelib tests scripts
        flake8 exchangelib tests scripts
        blacken-docs *.md docs/*.md
        unittest-parallel -j 4 --level=class --coverage --coverage-source exchangelib
        coveralls --service=github

  cleanup:
    # Clean up the server test account regardless of whether test failed
    runs-on: ubuntu-latest
    needs: build
    if: ${{ always() }}

    steps:
    - uses: actions/checkout@v4

    - name: Set up Python
      uses: actions/setup-python@v5
      with:
        python-version: '3.14'

    - name: Unencrypt secret file
      env:
          AES_256_CBC_PASS: ${{ secrets.AES_256_CBC_PASS }}
      # Only repo owners have access to the secret. PRs will run only the unit tests.
      # The encrypted file was created as:
      #  openssl aes-256-cbc -e -md sha256 -in settings.yml -out settings.yml.ghenc
      if: env.AES_256_CBC_PASS != ''
      run: |
        openssl aes-256-cbc -d -md sha256 -in settings.yml.ghenc -out settings.yml -pass env:AES_256_CBC_PASS

    - name: Upgrade pip
      run: |
        python -m pip install --upgrade pip wheel

    - name: Install dependencies
      run: |
        python -m pip install .
        python -m pip install -r test-requirements.txt

    - name: Clean up test account
      run: |
        PYTHONPATH=./ python scripts/wipe_test_account.py