Python Forum
Remove function and unit test
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Remove function and unit test
#3
If you are in linux, you can very easily create a ram disk where you would store the temporary files and directories needed for the tests. It would make the tests run much faster and also avoid unnecessary disk accesses. Here is a recipe to create a ramdisk of size 512MB
Output:
mkdir /media/ramdisk chmod 777 /media/ramdisk sudo mount -t tmpfs -o size=512M tmpfs /media/ramdisk
It can also be automounted at boot time by adding this line to /etc/fstab
Output:
none /media/ramdisk tmpfs nodev,nosuid,noexec,nodiratime,size=512M 0 0
Then create the necessary files and directories for the tests as subdirectories of /media/ramdisk
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 472 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,207 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,345 Feb-23-2021, 01:29 PM
Last Post: new_coder_231013
  Writing unit test results into a text file ateestructural 3 4,815 Nov-15-2020, 05:41 PM
Last Post: ateestructural
  Test a class function via "unittest " Penguin827 1 1,639 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,161 Feb-24-2020, 12:06 PM
Last Post: Larz60+
  How to write test cases by Unit test for database configuration file? binhduonggttn 0 2,591 Feb-18-2020, 08:03 AM
Last Post: binhduonggttn
  Odd Unit Test Behavior ichabod801 3 2,625 Jan-02-2020, 03:34 PM
Last Post: ichabod801
  Define unit of measure of a number doug2019 3 2,426 Oct-15-2019, 03:43 PM
Last Post: jefsummers
  Unit testing - AssertRaises kerzol81 3 4,634 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