Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…o_pieces into dev
  • Loading branch information
vinicvaz committed Nov 27, 2023
2 parents e284b6c + 3d06163 commit 3751820
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ jobs:
run: pip install -r requirements-tests.txt

# Remember to pass any necessary secrets as env vars here
# - name: Run tests over built images
# env:
# DOMINO_TESTS_ENVIRONMENT: github
# run: |
# pytest --cov=pieces --cov-report=xml --cov-report=term-missing
- name: Run tests over built images
env:
DOMINO_TESTS_ENVIRONMENT: github
run: |
pytest --cov=pieces --cov-report=xml --cov-report=term-missing
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/validate-and-organize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,16 @@ jobs:
run: pip install -r requirements-tests.txt

- name: Run tests over built images
env:
DOMINO_TESTS_ENVIRONMENT: github
run: |
pytest --cov=pieces --cov-report=xml --cov-report=term-missing
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: Publish images
env:
GHCR_USERNAME: ${{ github.actor }}
Expand Down
1 change: 1 addition & 0 deletions pieces/StandardScalerPiece/test_standard_scaler_piece.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from domino.testing import piece_dry_run, skip_envs
import pandas as pd


@skip_envs("github")
def test_standard_scaler_piece():
input_data = dict(
Expand Down

0 comments on commit 3751820

Please sign in to comment.