Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PyKEEN to ecosystem-ci #50

Draft
wants to merge 18 commits into
base: main
Choose a base branch
from
Draft
1 change: 1 addition & 0 deletions .azure/ci-testig-parameterized.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ jobs:
- "microsoft/deepspeed-release.yaml"
- "neptune-ai/lightning_integration.yaml"
- "manujosephv/pytorch-tabular_lit-release.yaml"
- "pykeen/pykeen.yaml"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Here are pre-requisites for your project before adding to the Lightning EcoSyste
```
1. Copy the [template file](actions/_config.yaml) in `configs` folder and call it `<my_project_name>.yaml`.
```
cp configs/template.yaml configs/<my_project_name>.yaml
cp actions/_config.yaml configs/<my_project_name>.yaml
```
1. At the minimum, modify the `HTTPS` variable to point to your repository. See [Configuring my project](https://github.com/Lightning-AI/ecosystem-ci/tree/main#configuring-my-project) for more options.
```yaml
Expand Down
29 changes: 29 additions & 0 deletions configs/pykeen/pykeen.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
target_repository:
HTTPS: https://github.com/pykeen/pykeen.git
# OPTIONAL, checkout a particular branch or a tag
checkout: master
# OPTIONAL, define installing package extras
install_extras: lightning
# copy some test from the target repository
copy_tests:
- tests/test_lightning.py
- tests/utils.py

contact:
slack:
# Max Berrendorf
- U03DAAVMLSH
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is my Slack account at https://pytorch-lightning.slack.com

mberr marked this conversation as resolved.
Show resolved Hide resolved
email: []

dependencies:
- name: pytorch-lightning
HTTPS: https://github.com/Lightning-AI/lightning.git
checkout: release/latest

testing:
dirs:
- tests/

runtimes:
- {os: "ubuntu-20.04", python-version: "3.10"}
- {os: "windows-2019", python-version: "3.8"}