Skip to content

chore(deps): bump python from 3.12.1-slim-bullseye to 3.12.2-slim-bullseye in /crud #60

chore(deps): bump python from 3.12.1-slim-bullseye to 3.12.2-slim-bullseye in /crud

chore(deps): bump python from 3.12.1-slim-bullseye to 3.12.2-slim-bullseye in /crud #60

GitHub Actions / APIs Tests failed Feb 9, 2024 in 0s

1 fail, 2 pass in 0s

3 tests  ±0   2 ✅ ±0   0s ⏱️ ±0s
1 suites ±0   0 💤 ±0 
1 files   ±0   1 ❌ ±0 

Results for commit 8ab4020. ± Comparison against earlier commit 3b0b7a3.

Annotations

Check warning on line 0 in test

See this annotation in the file changed.

@github-actions github-actions / APIs Tests

test_create_user (test) failed

apis/_output/reports/junit-apis.xml [took 0s]
Raw output
assert 404 == 200
 +  where 404 = <Response [404]>.status_code
def test_create_user():
        LOGGER.info(">>>>>>>> Create User >>>>>>>>")
        user = User(username="test_user", password="password", email="[email protected]",
                    firstName="Test", lastName="User", phone="1234567890", userStatus=0)
        response = user.create_user()
        LOGGER.info(f"Create user response: {response.json()}")
        assert response.status_code == 200
        LOGGER.info(">>>>>>>> Get created user info >>>>>>>>")
        response = user.get_user()
>       assert response.status_code == 200
E       assert 404 == 200
E        +  where 404 = <Response [404]>.status_code

root/test.py:16: AssertionError