-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* make: add check_conftest_imports target * ci: Add check_conftest_imports and run code checks before tests run tests first so CI exits faster
- Loading branch information
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
language: python | ||
python: | ||
- "3.6" | ||
sudo: required | ||
|
||
before_install: | ||
- curl -LO https://github.com/BurntSushi/ripgrep/releases/download/0.8.1/ripgrep_0.8.1_amd64.deb | ||
- sudo dpkg -i ripgrep_0.8.1_amd64.deb | ||
|
||
install: | ||
- make install | ||
|
||
script: | ||
- make doctest coverage black | ||
- make black check_conftest_imports doctest coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters