Skip to content

Commit

Permalink
adding trivial test
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Jul 31, 2023
1 parent 3a5a159 commit ab03c00
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ repos:
- id: check-toml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: fix-encoding-pragma

- repo: https://github.com/psf/black
rev: 23.1.0
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,3 @@
[![Apache 2.0 License](https://img.shields.io/badge/License-APACHEv2-brightgreen.svg)](https://github.com/cvxgrp/cvxcli/blob/master/LICENSE)
[![PyPI download month](https://img.shields.io/pypi/dm/cvxcli.svg)](https://pypi.python.org/pypi/cvxcli/)
[![Coverage Status](https://coveralls.io/repos/github/cvxgrp/simulator/badge.png?branch=main)](https://coveralls.io/github/cvxgrp/cvxcli?branch=main)

1 change: 1 addition & 0 deletions cvx/cli/smallest_eigenvalue.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import fire # type: ignore
import numpy as np

Expand Down
1 change: 1 addition & 0 deletions cvx/cli/weather.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import fire # type: ignore
import requests # type: ignore

Expand Down
2 changes: 2 additions & 0 deletions tests/test_trivial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def test_trivial():
assert True

0 comments on commit ab03c00

Please sign in to comment.