Skip to content

Commit

Permalink
fixup! 📦️(project) improve dependencies management
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaupetit committed Oct 11, 2022
1 parent ba3831b commit 284d9b6
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,16 @@ jobs:

- run:
name: Test library usage
command: python -c "from ralph.models.xapi.video.statements import VideoPlayed"
command: |
for module in $(\
find src/ralph/models/**/*.py | \
sed "s|^src/ralph/\(.*\)\.py|\1|g" | \
tr "/" "." | \
sed "s/\.__init__//g" | \
sort \
); do
python -c "from ${module} import *"
done
# ---- Tray jobs (k8s) ----
tray:
Expand Down

0 comments on commit 284d9b6

Please sign in to comment.