Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
ci: test min extras (#1558)
Browse files Browse the repository at this point in the history
* ci: test min extras
* tests
  • Loading branch information
Borda committed May 12, 2023
1 parent 2b00a8c commit 59dab9b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ updates:
directory: "/"
# Check for updates once a week
schedule:
interval: "monthly"
interval: "weekly"
# Labels on pull requests for version updates only
labels: ["enhancement"]
pull-request-branch-name:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ci-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ jobs:
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'graph', extra: [] }
- { os: 'ubuntu-20.04', python-version: 3.9, topic: 'audio', extra: [] }
- { os: 'ubuntu-20.04', python-version: 3.8, topic: 'core', extra: [], requires: 'oldest' }
- { os: 'ubuntu-20.04', python-version: 3.8, topic: 'serve', extra: [], requires: 'oldest' }
- { os: 'ubuntu-20.04', python-version: 3.8, topic: 'vision', extra: [], requires: 'oldest' }

# Timeout: https://stackoverflow.com/a/59076067/4521646
timeout-minutes: 50
Expand Down Expand Up @@ -74,8 +76,7 @@ jobs:
if: matrix.requires == 'oldest'
run: |
import glob, os
# FixMe: shall be minimal for ALL dependencies not only base
# files = glob.glob(os.path.join("requirements", "*.txt")) + ['requirements.txt']
files = glob.glob(os.path.join("requirements", "*.txt")) + ['requirements.txt']
files = ['requirements.txt']
for fname in files:
lines = [line.replace('>=', '==') for line in open(fname).readlines()]
Expand Down
Empty file added requirements/testing_vision.txt
Empty file.
Empty file added tests/vision/.gitkeep
Empty file.

0 comments on commit 59dab9b

Please sign in to comment.