Closed meghnapamula closed 7 months ago
If you're passing locally but failing on the github you may have stuff stored in a volume locally that won't exist when it builds on github. If you haven't already, you should run the tests on a clean container by doing:
docker-compose down
docker ps -a
kill any containers still listed with docker rm [container id]
docker volume ls
docker volume rm [container name, for all three]
docker-compose build
docker-compose up -d
and then run the tests again and see if they're still passing.
Also - which test case are you working on right now, that's passing locally but failing on github?
Hi,
I am working on the twitter_postgres_parallel homework assignment and I am finding that my tests cases are passing in the server but not in GitHub Actions. I have looked through the pinned issue and the issues linked in it, and have incorporated the suggestions there. However, I am still facing this issue. I think perhaps I am getting a different error than the people who posted about it in the pinned issue.
Here is the error I am getting right now in GitHub actions, even though all my test cases are passing:
I have been reading the links in the error message and am feeling a bit lost. I would appreciate any guidance on this issue.