Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix gitignore #213

Merged
merged 4 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,17 @@
composer.phar

# ignore testdata with credentials
/tests/integration/testdata.ini
/tests/integration/integration.ini
/tests/Integration/testdata.ini
/tests/Integration/integration.ini
# ignore ide configuration
.idea/

# ignore phpunit-cache
.phpunit.result.cache

# ignore php-cs-fixer cache
.php-cs-fixer.cache

# ignore log-files
*.log

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fix GroupHierarchie test, Fix DB-Fields test ([PR192](https://github.com/5pm-HDH/churchtools-api/pull/192), [PR194](https://github.com/5pm-HDH/churchtools-api/pull/194))
- Fix breaking changes Event-API ([PR196](https://github.com/5pm-HDH/churchtools-api/pull/196))
- Issue search for person ([PR210](https://github.com/5pm-HDH/churchtools-api/pull/210))
- Fix issue with changelog ([PR213](https://github.com/5pm-HDH/churchtools-api/pull/213))

## [2.0.0]

Expand Down
1 change: 1 addition & 0 deletions tests/Integration/Requests/SongCommentRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ protected function setUp(): void
{
parent::setUp();
$this->arrangementId = IntegrationTestData::getFilterAsInt("get_song_comments", "song_arrangement_id");
$this->markTestSkipped('Broken implementation of churchtools todo in #215');
}

public function testGetSongArrangement()
Expand Down
Loading