Skip to content

Commit

Permalink
ci-cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorgedavyd committed Jun 2, 2024
1 parent 10ee597 commit 2219d07
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 526 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest black
pip install pytest black pyreqs pip-tools
chmod +x requirements.sh
sh ./requirements.sh
pip install -r requirements.txt
- name: Run tests
Expand Down
1 change: 1 addition & 0 deletions lightorch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from .training import *
from .deprecated import *
from ._version import __version__
from .htuning import *

__author__ = "Jorge David Enciso Martínez"
__email__ = "jorged.encyso@gmail.com"
File renamed without changes.
1 change: 0 additions & 1 deletion lightorch/htuning/__init__.py

This file was deleted.

9 changes: 9 additions & 0 deletions requirements.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash

rm -f requirements.txt

pipreqs lightorch --savepath=requirements.in

pip-compile requirements.in

rm -f requirements.in
Loading

0 comments on commit 2219d07

Please sign in to comment.