Skip to content
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ before_install: pip install --upgrade pip setuptools
install: pip install -r requirements.txt
before_script:
- black --check . || true
- flake8 . --count --select=E9,F401,F63,F7,F82 --show-source --statistics
- flake8 . --count --select=E9,F4,F63,F7,F82 --show-source --statistics
script:
- scripts/validate_filenames.py # no uppercase, no spaces, in a directory
- mypy --ignore-missing-imports .
Expand Down
2 changes: 1 addition & 1 deletion linear_algebra/src/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"""

import unittest
from lib import *
from lib import Matrix, Vector, axpy, squareZeroMatrix, unitBasisVector, zeroVector

class Test(unittest.TestCase):
def test_component(self):
Expand Down