Advertisement
romerlrl

Untitled

Sep 2nd, 2021
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 42.24 KB | None | 0 0
  1.  
  2. (base) C:\Users\lucas>hf
  3.  
  4. (base) C:\Users\lucas>cd desktop\ic\hf\
  5.  
  6. (base) C:\Users\lucas\Desktop\ic\hf>conda activate est_fork3
  7.  
  8. (est_fork3) C:\Users\lucas\Desktop\ic\hf>cd agosto26
  9.  
  10. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26>cd nova pasta
  11.  
  12. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta>dir
  13. O volume na unidade C é OS
  14. O Número de Série do Volume é 5262-F822
  15.  
  16. Pasta de C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta
  17.  
  18. 02/09/2021 23:31 <DIR> .
  19. 02/09/2021 23:31 <DIR> ..
  20. 02/09/2021 10:35 53.248 .coverage
  21. 02/09/2021 17:58 <DIR> .noworkflow
  22. 03/09/2021 00:21 <DIR> arvores_scripts
  23. 27/08/2021 04:35 57.572 arvores_scripts.zip
  24. 02/09/2021 23:31 63.761 console 02nov.txt
  25. 02/09/2021 10:35 <DIR> coverage_data
  26. 27/08/2021 04:30 281 diferenças.txt
  27. 02/09/2021 10:35 643 exec_tree.gv
  28. 02/09/2021 10:35 19.813 exec_tree.gv.pdf
  29. 02/09/2021 17:47 126 sbm.py
  30. 27/08/2021 03:31 562 shide.py
  31. 27/08/2021 03:32 18.242 shide1.gv.pdf
  32. 27/08/2021 03:30 25.280 spure.gv.pdf
  33. 17/07/2021 16:27 512 spure.py
  34. 27/08/2021 03:54 15.207 stoolkit.gv.pdf
  35. 02/09/2021 10:38 577 stoolkit.py
  36. 02/09/2021 10:35 236 test_shide.py
  37. 02/09/2021 10:35 <DIR> __pycache__
  38. 14 arquivo(s) 256.060 bytes
  39. 6 pasta(s) 26.278.113.280 bytes disponíveis
  40.  
  41. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta>cd arvores_scripts
  42.  
  43. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts>dir
  44. O volume na unidade C é OS
  45. O Número de Série do Volume é 5262-F822
  46.  
  47. Pasta de C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts
  48.  
  49. 03/09/2021 00:21 <DIR> .
  50. 03/09/2021 00:21 <DIR> ..
  51. 27/08/2021 04:30 281 diferenças.txt
  52. 27/08/2021 03:31 562 shide.py
  53. 27/08/2021 03:33 18.242 shide1.gv.pdf
  54. 27/08/2021 03:30 25.280 spure.gv.pdf
  55. 17/07/2021 16:27 512 spure.py
  56. 27/08/2021 03:54 15.207 stoolkit.gv.pdf
  57. 27/08/2021 03:15 560 stoolkit.py
  58. 7 arquivo(s) 60.644 bytes
  59. 2 pasta(s) 26.278.088.704 bytes disponíveis
  60.  
  61. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts>more shide.py
  62. import sys
  63. from math import gcd, ceil, sqrt
  64. def is_prime(n):
  65. from prompt_toolkit.shortcuts import confirm
  66. a=int()
  67. if n<6:
  68. if n<2 or n==4:
  69. return False
  70. return True
  71. MULT235 = 2*3*5
  72. if gcd(n, MULT235)!=1:
  73. return False
  74. end = sqrt(n)
  75. if not end%1:
  76. return False
  77.  
  78. end = int(end)+1
  79.  
  80. for x in range(3, end, 2):
  81. if not n%x:
  82. return False
  83. return True
  84. if __name__ == '__main__':
  85. for k in sys.argv[1:]:
  86. print(k, is_prime(int(k)))
  87.  
  88.  
  89. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts>now run shide.py 7
  90. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'CodeBlock.activations' will copy column code_block.trial_id to column activation.trial_id, which conflicts with relationship(s): 'Activation.code_block' (copies code_block.trial_id to activation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  91. for (pr, fr_) in other_props
  92. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'CodeBlock.activations' will copy column code_block.id to column activation.code_block_id, which conflicts with relationship(s): 'Activation.code_block' (copies code_block.id to activation.code_block_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  93. for (pr, fr_) in other_props
  94. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Activation.evaluations' will copy column activation.trial_id to column evaluation.trial_id, which conflicts with relationship(s): 'Activation.this_evaluation' (copies activation.trial_id to evaluation.trial_id), 'Evaluation.this_activation' (copies activation.trial_id to evaluation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  95. for (pr, fr_) in other_props
  96. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.activation' will copy column activation.trial_id to column evaluation.trial_id, which conflicts with relationship(s): 'Activation.this_evaluation' (copies activation.trial_id to evaluation.trial_id), 'Evaluation.this_activation' (copies activation.trial_id to evaluation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  97. for (pr, fr_) in other_props
  98. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.id to column dependency.dependency_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.id to dependency.dependency_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  99. for (pr, fr_) in other_props
  100. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.activation_id to column dependency.dependency_activation_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.activation_id to dependency.dependency_activation_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  101. for (pr, fr_) in other_props
  102. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.trial_id to column dependency.trial_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.trial_id to dependency.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  103. for (pr, fr_) in other_props
  104. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Trial.arguments' will copy column trial.id to column argument.trial_id, which conflicts with relationship(s): 'Argument.trial' (copies trial.id to argument.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  105. for (pr, fr_) in other_props
  106. [now] ValueError("path is on mount 'D:', start on mount 'C:'")
  107. the execution finished with an uncaught exception. Traceback (most recent call last):
  108. File "C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts\shide.py", line 23, in <module>
  109. if __name__ == '__main__':
  110. noworkflow.now.collection.prov_execution.structures.ConditionExceptions.__getitem__.<locals>.ConditionException
  111.  
  112. During handling of the above exception, another exception occurred:
  113.  
  114. Traceback (most recent call last):
  115. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_execution\execution.py", line 64, in collect_provenance
  116. exec(compiled, metascript.namespace) # pylint: disable=exec-used
  117. File "C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts\shide.py", line 25, in <module>
  118. print(k, is_prime(int(k)))
  119. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_execution\collector.py", line 1202, in _call
  120. result = future.func(*args, **kwargs)
  121. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_execution\collector.py", line 1363, in new_function_def
  122. activation, function_def, args, kwargs, default_values, defaults, *args, **kwargs
  123. File "C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts\shide.py", line 4, in is_prime
  124. from prompt_toolkit.shortcuts import confirm
  125. File "<frozen importlib._bootstrap>", line 983, in _find_and_load
  126. File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
  127. File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
  128. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_deployment\py3module.py", line 32, in exec_module
  129. None, source_path, "module", False, True
  130. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_definition\definition.py", line 75, in create_code_block
  131. path = os.path.relpath(path, self.metascript.dir)
  132. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\ntpath.py", line 562, in relpath
  133. path_drive, start_drive))
  134. ValueError: path is on mount 'D:', start on mount 'C:'
  135.  
  136.  
  137. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts>more stoolkit.py
  138. from prompt_toolkit.shortcuts import confirm
  139.  
  140. import sys
  141. from math import gcd, ceil, sqrt
  142. def is_prime(n):
  143. a=int()
  144. if n<6:
  145. if n<2 or n==4:
  146. return False
  147. return True
  148. MULT235 = 2*3*5
  149. if gcd(n, MULT235)!=1:
  150. return False
  151. end = sqrt(n)
  152. if not end%1:
  153. return False
  154.  
  155. end = int(end)+1
  156.  
  157. for x in range(3, end, 2):
  158. if not n%x:
  159. return False
  160. return True
  161. if __name__ == '__main__':
  162. for k in sys.argv[1:]:
  163. print(k, is_prime(int(k)))
  164.  
  165.  
  166. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts>now run stoolkit.py
  167. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'CodeBlock.activations' will copy column code_block.trial_id to column activation.trial_id, which conflicts with relationship(s): 'Activation.code_block' (copies code_block.trial_id to activation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  168. for (pr, fr_) in other_props
  169. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'CodeBlock.activations' will copy column code_block.id to column activation.code_block_id, which conflicts with relationship(s): 'Activation.code_block' (copies code_block.id to activation.code_block_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  170. for (pr, fr_) in other_props
  171. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Activation.evaluations' will copy column activation.trial_id to column evaluation.trial_id, which conflicts with relationship(s): 'Activation.this_evaluation' (copies activation.trial_id to evaluation.trial_id), 'Evaluation.this_activation' (copies activation.trial_id to evaluation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  172. for (pr, fr_) in other_props
  173. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.activation' will copy column activation.trial_id to column evaluation.trial_id, which conflicts with relationship(s): 'Activation.this_evaluation' (copies activation.trial_id to evaluation.trial_id), 'Evaluation.this_activation' (copies activation.trial_id to evaluation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  174. for (pr, fr_) in other_props
  175. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.id to column dependency.dependency_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.id to dependency.dependency_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  176. for (pr, fr_) in other_props
  177. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.activation_id to column dependency.dependency_activation_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.activation_id to dependency.dependency_activation_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  178. for (pr, fr_) in other_props
  179. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.trial_id to column dependency.trial_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.trial_id to dependency.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  180. for (pr, fr_) in other_props
  181. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Trial.arguments' will copy column trial.id to column argument.trial_id, which conflicts with relationship(s): 'Argument.trial' (copies trial.id to argument.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  182. for (pr, fr_) in other_props
  183. [now] ValueError("path is on mount 'D:', start on mount 'C:'")
  184. the execution finished with an uncaught exception. Traceback (most recent call last):
  185. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_execution\execution.py", line 64, in collect_provenance
  186. exec(compiled, metascript.namespace) # pylint: disable=exec-used
  187. File "C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts\stoolkit.py", line 1, in <module>
  188. from prompt_toolkit.shortcuts import confirm
  189. File "<frozen importlib._bootstrap>", line 983, in _find_and_load
  190. File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
  191. File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
  192. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_deployment\py3module.py", line 32, in exec_module
  193. None, source_path, "module", False, True
  194. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_definition\definition.py", line 75, in create_code_block
  195. path = os.path.relpath(path, self.metascript.dir)
  196. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\ntpath.py", line 562, in relpath
  197. path_drive, start_drive))
  198. ValueError: path is on mount 'D:', start on mount 'C:'
  199.  
  200.  
  201. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts>now run stoolkit.py 7
  202. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'CodeBlock.activations' will copy column code_block.trial_id to column activation.trial_id, which conflicts with relationship(s): 'Activation.code_block' (copies code_block.trial_id to activation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  203. for (pr, fr_) in other_props
  204. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'CodeBlock.activations' will copy column code_block.id to column activation.code_block_id, which conflicts with relationship(s): 'Activation.code_block' (copies code_block.id to activation.code_block_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  205. for (pr, fr_) in other_props
  206. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Activation.evaluations' will copy column activation.trial_id to column evaluation.trial_id, which conflicts with relationship(s): 'Activation.this_evaluation' (copies activation.trial_id to evaluation.trial_id), 'Evaluation.this_activation' (copies activation.trial_id to evaluation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  207. for (pr, fr_) in other_props
  208. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.activation' will copy column activation.trial_id to column evaluation.trial_id, which conflicts with relationship(s): 'Activation.this_evaluation' (copies activation.trial_id to evaluation.trial_id), 'Evaluation.this_activation' (copies activation.trial_id to evaluation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  209. for (pr, fr_) in other_props
  210. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.id to column dependency.dependency_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.id to dependency.dependency_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  211. for (pr, fr_) in other_props
  212. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.activation_id to column dependency.dependency_activation_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.activation_id to dependency.dependency_activation_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  213. for (pr, fr_) in other_props
  214. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.trial_id to column dependency.trial_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.trial_id to dependency.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  215. for (pr, fr_) in other_props
  216. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Trial.arguments' will copy column trial.id to column argument.trial_id, which conflicts with relationship(s): 'Argument.trial' (copies trial.id to argument.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  217. for (pr, fr_) in other_props
  218. [now] ValueError("path is on mount 'D:', start on mount 'C:'")
  219. the execution finished with an uncaught exception. Traceback (most recent call last):
  220. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_execution\execution.py", line 64, in collect_provenance
  221. exec(compiled, metascript.namespace) # pylint: disable=exec-used
  222. File "C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts\stoolkit.py", line 1, in <module>
  223. from prompt_toolkit.shortcuts import confirm
  224. File "<frozen importlib._bootstrap>", line 983, in _find_and_load
  225. File "<frozen importlib._bootstrap>", line 967, in _find_and_load_unlocked
  226. File "<frozen importlib._bootstrap>", line 677, in _load_unlocked
  227. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_deployment\py3module.py", line 32, in exec_module
  228. None, source_path, "module", False, True
  229. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\noworkflow-2.0.0a0-py3.7.egg\noworkflow\now\collection\prov_definition\definition.py", line 75, in create_code_block
  230. path = os.path.relpath(path, self.metascript.dir)
  231. File "D:\Users\lucas\anaconda3\envs\est_fork3\lib\ntpath.py", line 562, in relpath
  232. path_drive, start_drive))
  233. ValueError: path is on mount 'D:', start on mount 'C:'
  234.  
  235.  
  236. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts>now run spure.py 7
  237. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'CodeBlock.activations' will copy column code_block.trial_id to column activation.trial_id, which conflicts with relationship(s): 'Activation.code_block' (copies code_block.trial_id to activation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  238. for (pr, fr_) in other_props
  239. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'CodeBlock.activations' will copy column code_block.id to column activation.code_block_id, which conflicts with relationship(s): 'Activation.code_block' (copies code_block.id to activation.code_block_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  240. for (pr, fr_) in other_props
  241. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Activation.evaluations' will copy column activation.trial_id to column evaluation.trial_id, which conflicts with relationship(s): 'Activation.this_evaluation' (copies activation.trial_id to evaluation.trial_id), 'Evaluation.this_activation' (copies activation.trial_id to evaluation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  242. for (pr, fr_) in other_props
  243. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.activation' will copy column activation.trial_id to column evaluation.trial_id, which conflicts with relationship(s): 'Activation.this_evaluation' (copies activation.trial_id to evaluation.trial_id), 'Evaluation.this_activation' (copies activation.trial_id to evaluation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  244. for (pr, fr_) in other_props
  245. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.id to column dependency.dependency_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.id to dependency.dependency_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  246. for (pr, fr_) in other_props
  247. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.activation_id to column dependency.dependency_activation_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.activation_id to dependency.dependency_activation_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  248. for (pr, fr_) in other_props
  249. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.trial_id to column dependency.trial_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.trial_id to dependency.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  250. for (pr, fr_) in other_props
  251. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Trial.arguments' will copy column trial.id to column argument.trial_id, which conflicts with relationship(s): 'Argument.trial' (copies trial.id to argument.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  252. for (pr, fr_) in other_props
  253. 7 True
  254.  
  255. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts>now run shide.py
  256. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'CodeBlock.activations' will copy column code_block.trial_id to column activation.trial_id, which conflicts with relationship(s): 'Activation.code_block' (copies code_block.trial_id to activation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  257. for (pr, fr_) in other_props
  258. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'CodeBlock.activations' will copy column code_block.id to column activation.code_block_id, which conflicts with relationship(s): 'Activation.code_block' (copies code_block.id to activation.code_block_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  259. for (pr, fr_) in other_props
  260. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Activation.evaluations' will copy column activation.trial_id to column evaluation.trial_id, which conflicts with relationship(s): 'Activation.this_evaluation' (copies activation.trial_id to evaluation.trial_id), 'Evaluation.this_activation' (copies activation.trial_id to evaluation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  261. for (pr, fr_) in other_props
  262. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.activation' will copy column activation.trial_id to column evaluation.trial_id, which conflicts with relationship(s): 'Activation.this_evaluation' (copies activation.trial_id to evaluation.trial_id), 'Evaluation.this_activation' (copies activation.trial_id to evaluation.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  263. for (pr, fr_) in other_props
  264. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.id to column dependency.dependency_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.id to dependency.dependency_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  265. for (pr, fr_) in other_props
  266. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.activation_id to column dependency.dependency_activation_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.activation_id to dependency.dependency_activation_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  267. for (pr, fr_) in other_props
  268. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Evaluation.dependencies_as_dependency' will copy column evaluation.trial_id to column dependency.trial_id, which conflicts with relationship(s): 'Dependency.dependency' (copies evaluation.trial_id to dependency.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  269. for (pr, fr_) in other_props
  270. D:\Users\lucas\anaconda3\envs\est_fork3\lib\site-packages\sqlalchemy-1.4.0b1-py3.7-win-amd64.egg\sqlalchemy\orm\relationships.py:3447: SAWarning: relationship 'Trial.arguments' will copy column trial.id to column argument.trial_id, which conflicts with relationship(s): 'Argument.trial' (copies trial.id to argument.trial_id). If this is not the intention, consider if these relationships should be linked with back_populates, or if viewonly=True should be applied to one or more if they are read-only. For the less common case that foreign key constraints are partially overlapping, the orm.foreign() annotation can be used to isolate the columns that should be written towards. The 'overlaps' parameter may be used to remove this warning.
  271. for (pr, fr_) in other_props
  272.  
  273. (est_fork3) C:\Users\lucas\Desktop\ic\hf\agosto26\Nova pasta\arvores_scripts>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement