Skip to content

Commit 97aad0b

Browse files
committed
chore(dev): Add Test Command
1 parent 808123f commit 97aad0b

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,5 @@ jobs:
1616
run: docker-compose pull
1717
- name: Build image
1818
run: docker-compose build
19-
- name: lint/format
20-
run: make lint
2119
- name: Test
2220
run: make test

Makefile

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,8 @@ down:
1818
build:
1919
docker-compose build
2020

21-
bash:
22-
docker-compose run --rm fastql bash -c "pytest"
23-
24-
lint:
25-
docker-compose run --rm fastql pre-commit run --all-files
26-
2721
test:
28-
docker-compose run --rm fastql pytest
22+
docker-compose up -d && docker-compose run --rm fastql bash -c "pytest"
2923

3024
clean:
3125
find . -name '*.pyc' -exec rm -f {} +

0 commit comments

Comments
 (0)