Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test reqs #345

Merged
merged 4 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
pip install --no-cache-dir -e .[test]
- name: Run unit tests
run: pytest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_test.txt
pip install pytest-cov
pip install --no-cache-dir -e .[test]
- name: Run unit tests
Expand All @@ -46,6 +47,7 @@ jobs:
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
pip install -r requirements.txt
pip install -r requirements_test.txt

- name: Build coverage file
run: |
Expand Down
1 change: 0 additions & 1 deletion mindsdb_sql/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@
__pypi__ = 'https://pypi.org/project/mindsdb_sql'
__license__ = 'GPL-3.0'
__copyright__ = 'Copyright 2021- mindsdb'

1 change: 0 additions & 1 deletion mindsdb_sql/parser/lexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,4 +241,3 @@ def DQUOTE_STRING(self, t):
@_(r'\n+')
def ignore_newline(self, t):
self.lineno += len(t.value)

Loading