Skip to content

Commit

Permalink
Rename integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Jan 27, 2019
1 parent 9cbe725 commit d02efb7
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ test-repeat: install

.PHONY: test-profile
test-profile: install
poetry run pytest tests/test_profile.py --profile-svg
poetry run pytest tests/test_profiling.py --profile-svg

# DOCUMENTATION ###############################################################

Expand All @@ -100,7 +100,7 @@ $(MKDOCS_INDEX): docs/requirements.txt mkdocs.yml docs/*.md
poetry run mkdocs build --clean --strict

docs/requirements.txt: poetry.lock
poetry run pip freeze | grep mkdocs > $@
@ poetry run pip freeze -qqq | grep mkdocs > $@

.PHONY: mkdocs-live
mkdocs-live: mkdocs
Expand Down
2 changes: 2 additions & 0 deletions tests/test_types.py → tests/test_extended_converters.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests for extended converters."""

# pylint: disable=unused-variable

import os
Expand Down
2 changes: 2 additions & 0 deletions tests/test_init.py → tests/test_instantiation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests for instantiating new synchronized objects."""

# pylint: disable=unused-variable

from dataclasses import dataclass, field
Expand Down
2 changes: 2 additions & 0 deletions tests/test_load.py → tests/test_loading.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests for loading from a file."""

# pylint: disable=unused-variable

import pytest
Expand Down
2 changes: 2 additions & 0 deletions tests/test_orm.py → tests/test_orm_usage.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests that represent usage as an ORM."""

from dataclasses import dataclass

from datafiles import datafile
Expand Down
2 changes: 2 additions & 0 deletions tests/test_auto.py → tests/test_patched_methods.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests for automatic saving and loading through patched methods."""

# pylint: disable=unused-variable

import os
Expand Down
2 changes: 2 additions & 0 deletions tests/test_profile.py → tests/test_profiling.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests used to profile the library."""

from dataclasses import dataclass, field
from typing import List, Optional

Expand Down
2 changes: 2 additions & 0 deletions tests/test_save.py → tests/test_saving.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests for saving to a file."""

# pylint: disable=unused-variable,assigning-non-slot

import pytest
Expand Down
2 changes: 2 additions & 0 deletions tests/test_sync.py → tests/test_setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""Tests for setting up a new class."""

# pylint: disable=unused-variable

from dataclasses import dataclass
Expand Down

0 comments on commit d02efb7

Please sign in to comment.