Skip to content

Commit 252434a

Browse files
committed
rename metadata_integration to test_integration
1 parent e004fda commit 252434a

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/test_docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
docker compose -f docker-compose-develop.yml build
2929
3030
- name: Spin Up Docker Compose and Run Tests
31-
run: pytest tests/metadata_integration.py -v
31+
run: pytest tests/test_integration.py -v
3232

3333
- name: Ensure that Docker Compose is Shutdown
3434
if: always()
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ def docker_compose():
2222
subprocess.run(["docker", "compose", "down"], check=True)
2323

2424

25-
2625
def test_validate_metadata():
2726
url = "http://localhost:5001/ro_crates/validate_metadata"
2827
headers = {
@@ -50,4 +49,4 @@ def test_validate_metadata():
5049

5150
# Assertions — update based on expected API behavior
5251
assert response.status_code == 200
53-
assert response_result['passed'] == True
52+
assert response_result['passed'] is True

0 commit comments

Comments
 (0)