Skip to content

Commit

Permalink
update changelog, uncomment tests skipping
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldcampbelljr committed Apr 9, 2024
1 parent 816e2f1 commit a2f0710
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.

## [0.8.3] - 2024-03-xx
## [0.9.0] - 2024-04-xx
### Fixed
- Bug with rm_record for filebackend
### Added
- Added results history and history retrieval for both file and db backends.

## [0.8.2] - 2024-02-22
### Changed
Expand Down
1 change: 0 additions & 1 deletion pipestat/backends/db_backend/db_parsed_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@ def build_history_model(self, pipeline_type):
field_defs = self._add_pipeline_name_field(field_defs)
field_defs = self._add_created_time_field(field_defs)
field_defs = self._add_modified_time_field(field_defs)
# field_defs = self._add_relationship(field_defs)

field_defs["source_record_id"] = (
int,
Expand Down
2 changes: 1 addition & 1 deletion tests/test_db_only_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def __exit__(self, exc_type, exc_value, exc_traceback):
self.connection.close()


# @pytest.mark.skipif(not DB_DEPENDENCIES, reason="Requires dependencies")
@pytest.mark.skipif(not DB_DEPENDENCIES, reason="Requires dependencies")
@pytest.mark.skipif(SERVICE_UNAVAILABLE, reason="requires service X to be available")
class TestDatabaseOnly:
# TODO: parameterize this against different schemas.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_pipestat.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def test_basics_project_level(
psm.retrieve_one(record_identifier=rec_id)


# @pytest.mark.skipif(not DB_DEPENDENCIES, reason="Requires dependencies")
@pytest.mark.skipif(not DB_DEPENDENCIES, reason="Requires dependencies")
@pytest.mark.skipif(SERVICE_UNAVAILABLE, reason="requires postgres service to be available")
class TestReporting:
@pytest.mark.parametrize(
Expand Down

0 comments on commit a2f0710

Please sign in to comment.