-
Notifications
You must be signed in to change notification settings - Fork 34
74 lines (63 loc) · 2.1 KB
/
test_package.yaml
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
name: test, package
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
# max-parallel: 6
matrix:
os: [ubuntu-latest]
python-version: ['3.8']
steps:
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# - name: Cache pip
# uses: actions/cache@v2
# id: cache
# with:
# path: ${{ env.pythonLocation }}
# # Look to see if there is a cache hit for the corresponding requirements files
# key: ${{ env.pythonLocation }}-${{ hashFiles('requirements/*') }}
# restore-keys: |
# ${{ env.pythonLocation }}-
- name: Install dependencies
# if: steps.cache.outputs.cache-hit != 'true'
run: |
python -m pip install --upgrade --user pip setuptools pytest-cov
python --version
pip --version
pip list
- name: Run tests
run: |
# tox --sitepackages
python setup.py install
python -c 'import whitematteranalysis'
# coverage run --source whitematteranalysis -m pytest whitematteranalysis -o junit_family=xunit2 -v --doctest-modules --junitxml=junit/test-results-${{ runner.os }}-${{ matrix.python-version }}.xml
pytest
- name: Upload pytest test results
uses: actions/upload-artifact@master
with:
name: pytest-results-${{ runner.os }}-${{ matrix.python-version }}
path: junit/test-results-${{ runner.os }}-${{ matrix.python-version }}.xml
# Use always() to always run this step to publish test results when there are test failures
if: always()
- name: Package Setup
# - name: Run tests with tox
run: |
# pip install build
# check-manifest
python setup.py install
# twine check dist/
# tox --sitepackages
# python -m tox
# - name: Statistics
# if: success()
# run: |
# coverage report