Skip to content

Commit

Permalink
Update the test workflow
Browse files Browse the repository at this point in the history
Signed-off-by: popcorny <[email protected]>
  • Loading branch information
popcornylu committed May 8, 2024
1 parent d53c82c commit 7397ba4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests-sqlmesh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- main

jobs:
build:
smoke-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- main

jobs:
build:
smoke-test:
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint by ESLint
name: Test JS

on:
push:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Python Flake8 and Unit Tests
name: Test Python

on:
push:
Expand All @@ -13,7 +13,7 @@ on:
- "recce/**"

jobs:
build:
test-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -42,4 +42,4 @@ jobs:
- name: Run tests
run: |
make test
make test-tox
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ flake8:

test: install-dev
@python3 -m pytest tests
@tox

test-tox: install-dev
@tox

install-frontend-requires:
# Install pnpm if not installed
Expand Down

0 comments on commit 7397ba4

Please sign in to comment.