You could also trigger this error if you have a main() (or similar) function in your code that calls the function(s) you're trying to test with pytest in your test file, but did not set a condition like this to call the main() function. For example:
if __name__ == "__main__":
main()