Skip to content

Commit

Permalink
fix: correcao de importacao
Browse files Browse the repository at this point in the history
  • Loading branch information
heltonricardo committed Dec 20, 2023
1 parent 73c07ab commit 786443d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test files
run: pytest test/test_train.py
run: pytest src/test/test_train.py

check_python_code_style:
name: Check Python code style
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Train Model
run: python train.py
run: python src/train/train.py

# build_image:
# name: Build image
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion test/test_train.py → src/test/test_train.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import pytest
from tensorflow.keras.models import Sequential

from train import read_data, create_model, train_model
from ..train.train import read_data, create_model, train_model


@pytest.fixture
Expand Down
File renamed without changes.

0 comments on commit 786443d

Please sign in to comment.