Skip to content

Commit bdcb218

Browse files
authored
Merge pull request #6 from MacHu-GWU/dev/2.X
2.0.0.2
2 parents d9d7e40 + a07b8a2 commit bdcb218

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+7045
-565
lines changed

.coveragerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ omit =
77
sqlalchemy_mate/docs/*
88
sqlalchemy_mate/tests/*
99
sqlalchemy_mate/vendor/*
10+
sqlalchemy_mate/patterns/large_binary_column/local.py
1011

1112
[report]
1213
# Regexes for lines to exclude from consideration

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
sqlalchemy_mate_venv/
33
sqlalchemy_mate.egg-info/
44
sqlalchemy_mate-*/
5+
debug/data/
56
tmp/
67
.db.json
78

bin/run_test_on_many_sqlalchemy_versions.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
import subprocess
44
from sqlalchemy_mate.paths import dir_project_root, dir_venv_bin
5+
from rich import print as rprint
6+
from rich.panel import Panel
57

68
sqlalchemy_versions = [
79
"2.0.0",
@@ -16,11 +18,12 @@
1618
path_venv_pip = dir_venv_bin / "pip"
1719
with dir_project_root.cwd():
1820
for version in sqlalchemy_versions:
21+
rprint(Panel(f"Test on sqlalchemy.__version__ = {version}"))
1922
subprocess.run(
2023
[
2124
f"{path_venv_pip}",
2225
"install",
2326
f"sqlalchemy=={version}",
2427
]
2528
)
26-
subprocess.run(["pyops", "cov-only"])
29+
subprocess.run(["pyops", "cov-only"], check=True)

0 commit comments

Comments
 (0)