@@ -50,11 +50,10 @@ jobs:
5050
5151 - name : Run MyPy type checking
5252 run : |
53- mypy src/linear-cli
53+ mypy src/linear_cli
5454
5555 - name : Check imports with isort
5656 run : |
57- pip install isort
5857 isort --check-only --diff src/ tests/
5958
6059 test :
8988
9089 - name : Run unit tests
9190 run : |
92- pytest tests/unit/ -v --tb=short --cov=src/linear-cli --cov-report=xml --cov-report=term-missing
91+ pytest tests/unit/ -v --tb=short --cov=src/linear_cli --cov-report=xml --cov-report=term-missing
9392
9493 - name : Run integration tests
9594 run : |
@@ -118,12 +117,11 @@ jobs:
118117 run : |
119118 python -m pip install --upgrade pip
120119 pip install -e .[dev]
121- pip install bandit safety
122120
123121 - name : Run Bandit security scan
124122 run : |
125- bandit -r src/linear-cli / -f json -o bandit-report.json || true
126- bandit -r src/linear-cli /
123+ bandit -r src/linear_cli / -f json -o bandit-report.json || true
124+ bandit -r src/linear_cli /
127125
128126 - name : Run Safety vulnerability scan
129127 run : |
@@ -251,15 +249,15 @@ jobs:
251249 - name : Test wheel installation
252250 run : |
253251 pip install dist/*.whl
254- linear-cli --version
255- linear-cli --help
252+ linear --version
253+ linear --help
256254
257255 - name : Test source installation
258256 run : |
259257 pip uninstall -y linear-cli
260258 pip install dist/*.tar.gz
261- linear-cli --version
262- linear-cli --help
259+ linear --version
260+ linear --help
263261
264262 performance :
265263 name : Performance Benchmarks
@@ -277,7 +275,6 @@ jobs:
277275 run : |
278276 python -m pip install --upgrade pip
279277 pip install -e .[test]
280- pip install pytest-benchmark
281278
282279 - name : Run performance tests
283280 run : |
0 commit comments