diff --git a/.travis.yml b/.travis.yml index 393365dc..dd6c7fb3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,6 @@ python: - "3.7" - "3.8" -if: type = pull_request - install: - pip install -r requirements.txt - pip install pytest pytest-cov coveralls diff --git a/pvanalytics/tests/test_pvanalytics.py b/pvanalytics/tests/test_pvanalytics.py index 4d588167..9356744c 100644 --- a/pvanalytics/tests/test_pvanalytics.py +++ b/pvanalytics/tests/test_pvanalytics.py @@ -1,6 +1,6 @@ -import pytest +"""Tests for pvanalytics.""" -@pytest.mark.skip(reason="placeholder for setting up CI pipeline") def test_example(): - assert False + """Place-holder test for setting up CI pipelines.""" + assert True