Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
RKrahl committed Dec 29, 2022
2 parents 732bad9 + 18f4e31 commit 52b800b
Show file tree
Hide file tree
Showing 56 changed files with 1,257 additions and 814 deletions.
6 changes: 6 additions & 0 deletions .github/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
PyYAML >=5.4
distutils-pytest
ExifRead >= 2.2.0
pytest >= 3.6.0
pytest-dependency
setuptools_scm
32 changes: 32 additions & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Run Test
on: [push, pull_request]
jobs:
Test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
os: [ubuntu-latest]
include:
- python-version: '3.6'
os: ubuntu-20.04
steps:
- name: Check out repository code
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: Install dependencies
run: |
pip install -r .github/requirements.txt
- name: Test with pytest
run: |
python setup.py test
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
*.pyc
*~
__pycache__/
/.cache/
/.env
/MANIFEST
/_meta.py
/build/
/dist/
/photoidx/__init__.py
5 changes: 0 additions & 5 deletions .req

This file was deleted.

13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

210 changes: 0 additions & 210 deletions CHANGES

This file was deleted.

Loading

0 comments on commit 52b800b

Please sign in to comment.