We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 808123f commit 97aad0bCopy full SHA for 97aad0b
.github/workflows/build.yml
@@ -16,7 +16,5 @@ jobs:
16
run: docker-compose pull
17
- name: Build image
18
run: docker-compose build
19
- - name: lint/format
20
- run: make lint
21
- name: Test
22
run: make test
Makefile
@@ -18,14 +18,8 @@ down:
build:
docker-compose build
-bash:
- docker-compose run --rm fastql bash -c "pytest"
23
-
24
-lint:
25
- docker-compose run --rm fastql pre-commit run --all-files
26
27
test:
28
- docker-compose run --rm fastql pytest
+ docker-compose up -d && docker-compose run --rm fastql bash -c "pytest"
29
30
clean:
31
find . -name '*.pyc' -exec rm -f {} +
0 commit comments