forked from gorakhargosh/watchdog
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
27 additions
and
7 deletions.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
freebsd_instance: | ||
image_family: freebsd-12-1 | ||
|
||
task: | ||
install_script: | ||
- pkg install -y python37 py37-sqlite3 | ||
# Print the Python version, only to be sure we are running the version we want | ||
- python3.7 -c 'import platform; print("Python", platform.python_version())' | ||
# Check SQLite3 is installed | ||
- python3.7 -c 'import sqlite3; print("SQLite3", sqlite3.version)' | ||
setup_script: | ||
- python3.7 -m ensurepip | ||
- python3.7 -m pip install -U pip | ||
- python3.7 -m pip install -r requirements-tests.txt | ||
lint_script: | ||
- python3.7 -m flake8 docs src tests tools | ||
tests_script: | ||
- python3.7 -bb -m pytest tests |
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
-e ".[watchmedo]" | ||
eventlet | ||
flake8 | ||
flaky | ||
pytest | ||
pytest-cov | ||
pytest-timeout |
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