Python Forum
Remove function and unit test
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Remove function and unit test
#2
I'm glad you're looking into unit testing. I've not used pytest, but I suspect it has functionality to mark a function to be run before tests and after tests so you can do the setting up and clearing up in that way (it's common to want to do that, so I'd be surprised if pytest didn't have such facilities).

As for creating the files and folders in the first place, take a look at this - the tempfile module has facilities to create temporary files. If you're on Unix, then look at the os module (not listed in the link because its scope is more general than just the file system) which has a chmod function for setting permissions (I don't know what one would do on Windows I'm afraid!).
Reply


Messages In This Thread
Remove function and unit test - by ftg - Jan-07-2020, 09:28 AM
RE: Remove function and unit test - by ndc85430 - Jan-07-2020, 10:00 AM
RE: Remove function and unit test - by Gribouillis - Jan-07-2020, 10:34 AM
RE: Remove function and unit test - by ftg - Jan-07-2020, 12:54 PM
RE: Remove function and unit test - by ndc85430 - Jan-07-2020, 03:10 PM
RE: Remove function and unit test - by ftg - Jan-07-2020, 02:08 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Unit Testing Set Up and Use RockBlok 2 480 Jan-08-2024, 07:43 PM
Last Post: deanhystad
  How to test and import a model form computer to test accuracy using Sklearn library Anldra12 6 3,218 Jul-03-2021, 10:07 AM
Last Post: Anldra12
  Using Dictionary to Test Evenness of Distribution Generated by Randint Function new_coder_231013 6 3,358 Feb-23-2021, 01:29 PM
Last Post: new_coder_231013
  Writing unit test results into a text file ateestructural 3 4,823 Nov-15-2020, 05:41 PM
Last Post: ateestructural
  Test a class function via "unittest " Penguin827 1 1,646 Jul-10-2020, 08:31 AM
Last Post: Gribouillis
  How to write test cases for a init function by Unit test in python? binhduonggttn 2 3,164 Feb-24-2020, 12:06 PM
Last Post: Larz60+
  How to write test cases by Unit test for database configuration file? binhduonggttn 0 2,592 Feb-18-2020, 08:03 AM
Last Post: binhduonggttn
  Odd Unit Test Behavior ichabod801 3 2,630 Jan-02-2020, 03:34 PM
Last Post: ichabod801
  Define unit of measure of a number doug2019 3 2,428 Oct-15-2019, 03:43 PM
Last Post: jefsummers
  Unit testing - AssertRaises kerzol81 3 4,645 Oct-07-2019, 10:35 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020